* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}


/*** 

====================================================================
  Global Settings
====================================================================

 ***/


:root{
  --text-font: "DM Sans", sans-serif;
  --title-font: "Hanken Grotesk", sans-serif;
}

body {
  font-size:17px;
  color: var(--text-color);
  line-height:26px;
  font-weight:400;
  background:#ffffff;
  font-family: var(--text-font);
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center top;
  -webkit-font-smoothing: antialiased;
}

  @media (min-width:1200px) {
  .container {
    max-width: 1200px;
    padding: 0px 15px;
  }
}

.large-container{
  max-width: 1600px;
  padding: 0px 15px;
  margin: 0 auto;
}

.container-fluid{
  padding: 0px;
}

.auto-container{
  position:static;
  max-width:1200px;
  padding:0px 15px;
  margin:0 auto;
}

.small-container{
  max-width:680px;
  margin:0 auto;
}

.boxed_wrapper{
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  width: 100%;
  min-width: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


a{
  font-family: var(--title-font);
  text-decoration:none;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

a:hover{
  text-decoration:none;
  outline:none;
}

input,button,select,textarea{
  font-family: var(--text-font);
  font-weight: 400;
  font-size: 17px;
  background: transparent;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

ul,li{
  list-style:none;
  padding:0px;
  margin:0px; 
}

input{
  transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus{
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p{
  position: relative;
  font-family: var(--text-font);
  color: var(--text-color);
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
}

h1,h2,h3,h4,h5,h6{
  position:relative;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  margin: 0px;
  transition: all 500ms ease;
}

/* Preloader */

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
  background: #325549;
}

.preloader-close{
  position: fixed;
  z-index: 99999999;
  font-size: 20px;
  background: #fff;
  color: #325549;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  right: 30px;
  top: 30px;
  font-weight: 400;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner{
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top:0;
  position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading{
  font-family: var(--title-font);
  font-weight: 500;
  letter-spacing: 15px;
  display: inline-block;
  position: relative;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {animation-delay: 0.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {animation-delay: 0.4s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {animation-delay: 0.6s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {animation-delay: 0.8s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 1s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 1.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before { animation-delay: 1.6s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before { animation-delay: 1.8s;}
.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  color: #ffffff;
}

.handle-preloader .animation-preloader .spinner{
  border: 3px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.3); 
}

/* AnimaciÃ³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}
@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .handle-preloader .animation-preloader .txt-loading .letters-loading {font-size: 30px; letter-spacing: 5px;}
}


.centred{
  text-align: center;
}

.pull-left{
  float: left;
}

.pull-right{
  float: right;
}


figure{
  margin: 0px;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.row{
  --bs-gutter-x: 30px;
}

/** button **/


.theme-btn{
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  font-family: var(--title-font);
  background: #325549;
  color: #fff !important;
  text-align: center;
  padding: 16px 29px;
  text-transform: capitalize;
  z-index: 1;
  transition: all 500ms ease;
}

.theme-btn span{
  position: relative;
  padding-left: 26px;
}

.theme-btn span:before{
  position: absolute;
  content: "\f103";
  font-family: 'flaticon_flexibank';
  left: 0px;
  top: 1px;
  transition: all 500ms ease;
}

.theme-btn:before{
  position: absolute;
  content: '';
  background: var(--secondary-color);
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.theme-btn:hover:before{
  width: 100%;
}


.parallax-bg{
  position: absolute;
  left: 0px;
  top: -30%;
  width: 100%;
  height: calc(100% + 30%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


/** styled-pagination */

.pagination{
  position: relative;
  display: block;
}

.pagination{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination-wrapper.centred .pagination{
  justify-content: center;
}

.pagination li a{
  position: relative;
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  border: 1px solid #e6e4e4;
  text-align: center;
  font-size: 18px;
  color: #a8a7a7;
  font-weight: 700;
}

.pagination li a.current,
.pagination li a:hover{
  color: #fff;
  background: #325549;
  border-color: #325549;
}

.pagination li a i{
  position: relative;
  display: inline-block;
  font-size: 22px;
  top: 2px;
}

.pagination li:first-child a i{
  transform: rotate(180deg);
  top: -4px;
}


.sec-pad{
  padding: 113px 0px 120px 0px;
}

.sec-pad-2{
  padding: 113px 0px 90px 0px;
}

.mr-0{
  margin: 0px !important;
}

/** scroll-to-top **/

.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  box-shadow: inset 0 0 0 2px rgba(0,46,65,0.2);
  border-radius: 50%;
  z-index: 90000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.home_3 .scroll-to-top{
  box-shadow: inset 0 0 0 2px rgba(0,204,102,0.5);
}

.home_3 .scroll-to-top .scroll-top-inner path{
  stroke: rgba(0,204,102,1);
}

.home_3 .scroll-to-top::after{
  color: rgba(0,204,102,1);
}

.scroll-to-top.scroll-top-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

.scroll-to-top::after {
  position: absolute;
  content: "\f109";
  font-family: flaticon_flexibank;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  color: #325549;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear
}

.scroll-to-top:hover::after {
  color: #325549
}

.scroll-to-top:hover::before {
  opacity: 1
}

.scroll-to-top .scroll-top-inner path {
  stroke-width: 4;
  fill: transparent;
  box-sizing: border-box;
  stroke: #325549;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}



@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}



.sec-title{
  position: relative;
  display: block;
  margin-bottom: 48px;
}

.sec-title .sub-title{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  color: #325549;
  padding-left: 30px;
  margin-bottom: 12px;
}

.sec-title .sub-title:before{
  position: absolute;
  content: '';
  background: #325549;
  width: 3px;
  height: 6px;
  left: 0px;
  top: 9px;
}

.sec-title .sub-title:after{
  position: absolute;
  content: '';
  background: #325549;
  width: 15px;
  height: 6px;
  left: 5px;
  top: 9px;
}

.sec-title h2{
  display: block;
  font-size: 48px;
  line-height: 56px;
}

.sec-title p{
  margin-top: 22px;
}

.sec-title.light h2{
  color: #fff;
}

.sec-title.light p{
  color: #a7afbf;
}





/*** 

====================================================================
                        Home-Page-One
====================================================================

***/


/** main-header **/

.main-header{
  position:relative;
  left:0px;
  top:0px;
  right: 0px;
  z-index:999;
  width:100%;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.sticky-header{
  position:fixed;
  opacity:0;
  visibility:hidden;
  left:0px;
  top:0px;
  width:100%;
  z-index:0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.fixed-header .sticky-header{
  z-index:999;
  opacity:1;
  visibility:visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}


/*** Search Popup ***/

.search-popup {
  position: fixed;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  overflow: auto;
  background: rgba(0, 0, 0, 0.80);
  -webkit-transform: translateY(101%);
  -ms-transform: translateY(101%);
  transform: translateY(101%);
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
}

.search-popup.popup-visible {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
}

.search-popup .popup-inner{
  width: 100%;
  background: #fff;
  height: 100%;
}

.search-popup .upper-box{
  position: relative;
  padding: 70px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
}

.search-popup .upper-box .logo-box{
  max-width: 203px;
}

.search-popup .overlay-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
}

.search-popup .close-search {
  position: relative;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #325549;
  border-radius: 50%;
  text-align: center;
  transition: all 500ms ease;
}

.search-popup .search-form {
  position: relative;
  width: 100%;
  padding: 100px 0px 250px 0px;
}

.search-popup .search-form .form-group{
  position: relative;
  margin: 0px;
}

.search-popup .search-form fieldset input[type="search"] {
  position: relative;
  height: 90px;
  padding: 20px 0px;
  background: #ffffff;
  line-height: 30px;
  font-size: 20px;
  color: #808080;
  font-family: 'Poppins', sans-serif;
  border: none;
  font-weight: 400;
  border-radius: 0px;
  padding-right: 50px;
  border-bottom: 1px solid #e5e5e5;
}

.search-popup .search-form fieldset button[type="submit"] {
  position: absolute;
  top: 30px;
  right: 0px;
  font-size: 25px;
  color: #141417;
  cursor: pointer;
  transition: all 500ms ease;
}

.search-popup .search-form fieldset input[type="search"]:focus{
  border-color: #141417;
}

.search-popup .form-control:focus{
  box-shadow: none !important;
}

.main-header{
  position: relative;
  background: #fff;
}

.main-header .outer-container{
  position: relative;
  padding: 0px 60px;
}

.nice-select{
  position: relative;
  font-size: 17px;
  line-height: 26px;
  color: #545151;
  padding-right: 17px;
}

.nice-select:before{
  position: absolute;
  content: "\f101";
  font-family: 'flaticon_flexibank';
  font-weight: 900;
  font-size: 14px;
  color: #a8a7a7;
  top: 0px;
  right: 0px;
}

.nice-select .list{
  min-width: 100px;
  width: 100%;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

.nice-select .list li{
  color: var(--text-color) !important;
  display: block !important;
  margin: 0px !important;
}


/** header-top **/

.header-top .top-inner{
  position: relative;
  width: 100%;
  background: #f5f4f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top .info-list{
  position: relative;
  display: flex;
  align-items: center;
}

.header-top .info-list li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  line-height: 26px;
  margin-right: 30px;
}

.header-top .info-list li:last-child{
  margin: 0px !important;
}

.header-top .info-list li a{
  color: var(--text-color);
}

.header-top .info-list li a:hover{
  color: #325549;
}

.header-top .info-list li:before{
  position: absolute;
  content: '';
  background: #e2e0e0;
  width: 1px;
  height: 60px;
  top: -17px;
  right: 0px;
}

.header-top .info-list li:first-child:before,
.header-top .info-list li:last-child:before{
  display: none;
}

.header-top .info-list li.looking-box{
  background: #325549;
  padding: 17px 30px;
}

.header-top .info-list li.looking-box h5{
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 600;
}

.header-top .info-list li.looking-box .nice-select{
  font-size: 17px;
  line-height: 26px;
  color: #fff;
  font-weight: 500;
}

.header-top .info-list li.looking-box .nice-select .list{
  width: 150px;
}

.header-top .info-list li.looking-box .nice-select:before{
  color: #fff;
}

.header-top .info-list li.looking-box:after{
  position: absolute;
  content: '';
  background: #325549;
  width: 25px;
  height: 25px;
  right: 0px;
  bottom: -25px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 0%);
}

.header-top .right-column{
  position: relative;
  display: flex;
  align-items: center;
}

.header-top .option-list{
  position: relative;
  display: flex;
  align-items: center;
}

.header-top .option-list li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 30px;
  font-size: 17px;
  line-height: 26px;
}

.header-top .option-list li:last-child{
  margin: 0px !important;
}

.header-top .option-list li a{
  display: inline-block;
  color: var(--text-color);
}

.header-top .option-list li a:hover{
  color: #325549;
}

.header-top .option-list:before{
  position: absolute;
  content: '';
  background: #e2e0e0;
  width: 1px;
  height: 60px;
  top: -17px;
  right: 0px;
}

.header-top .language-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-top .language-box .nice-select .list{
  width: 140px;
}

.main-header .outer-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header .outer-box .menu-area{
  position: relative;
  display: flex;
  align-items: center;
}


/** side-panel **/

.side-panel {
  position: absolute;
  width: 370px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  transform: scaleY(0);
  transform-origin: top center;
  top: 100px;
  right: 0px;
  padding: 26px 30px 24px 30px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  transition: all 500ms ease;
}

.side-panel.cart-visible {
  opacity: 1;
  visibility: visible;
  display: block;
  transform: scaleY(1);
}

.side-panel .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
}

.side-panel .tab-btns .tab-btn{
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-left: 26px;
  margin-right: 20px;
}

.side-panel .tab-btns .tab-btn:last-child{
  margin: 0px !important;
}

.side-panel .tab-btns .tab-btn h4{
  font-size: 18px;
  line-height: 26px;
}

.side-panel .tab-btns .tab-btn:before{
  position: absolute;
  content: '';
  background: #f5f4f4;
  border: 1px solid #e6e4e4;
  width: 16px;
  height: 16px;
  left: 0px;
  top: 5px;
}

.side-panel .tab-btns .tab-btn:after{
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  left: 5px;
  top: 10px;
  background: #325549;
  opacity: 0;
  transition: all 500ms ease;
}

.side-panel .tab-btns .tab-btn.active-btn:after{
  opacity: 1;
}

.side-panel .inner-box .form-group{
  position: relative;
  margin-bottom: 20px;
}

.side-panel .inner-box .form-group .icon-box{
  position: absolute;
  top: 12px;
  right: 20px;
  z-index: 1;
}

.side-panel .inner-box .form-group input[type='text']{
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  background: #f5f4f4;
  border: 1px solid #f5f4f4;
  font-size: 17px;
  color: #a8a7a7;
  padding: 10px 50px 10px 20px;
  transition: all 500ms ease;
}

.side-panel .inner-box .form-group input:focus{
  border-color: #325549;
}

.side-panel .inner-box .text{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  color: var(--title-color);
  text-align: center;
  margin-bottom: 20px;
}

.side-panel .inner-box .link-box a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: var(--title-color);
  padding-left: 26px;
}

.side-panel .inner-box .link-box a:hover{
  color: #325549;
}

.side-panel .inner-box .link-box a i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 20px;
  color: #325549;
}

.side-panel .close-icon{
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  color: var(--title-color);
  opacity: 0.5;
  cursor: pointer;
  transition: all 500ms ease;
}

.side-panel .close-icon:hover{
  color: #325549;
  opacity: 1;
}

.side-panel:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 40px;
  height: 20px;
  top: -20px;
  right: 38px;
  clip-path: polygon(0% 0%, 50% 0%, 100% 100%, 0% 100%, 50% 0%);
}


.main-header .menu-right-content{
  position: relative;
  display: flex;
  align-items: center;
}

.main-header .menu-right-content .search-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: #a8a7a7;
  cursor: pointer;
}

.main-header .menu-right-content .search-box:before{
  position: absolute;
  content: '';
  background: #e6e4e4;
  width: 1px;
  height: 35px;
  top: -4px;
  right: 0px;
}

.main-header .menu-right-content .support-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-header .menu-right-content .support-box a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
}

.main-header .menu-right-content .support-box a:hover{
  color: #325549;
}

.main-header .menu-right-content .support-box:before{
  position: absolute;
  content: '';
  background: #1da630;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 3px solid #a5dbac;
  top: -5px;
  right: -15px;
}

.main-header .menu-right-content .nav-toggler .side-panel-btn{
  position: relative;
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  border: 1px solid #e6e4e4;
  cursor: pointer;
  text-align: center;
  transition: all 500ms ease;
}

.main-header .menu-right-content .nav-toggler .side-panel-btn:hover{
  border-color: #325549;
}


/** main-menu **/

.main-menu{
  float: left;
}

.main-menu .navbar-collapse{
  padding:0px;
  display:block !important;
}

.main-menu .navigation{
  margin:0px;
}

.main-menu .navigation > li{
  position: relative;
  float:left;
  z-index:2;
  margin: 0px 20px;
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}

.main-menu .navigation > li:last-child{
  margin-right:0px !important;
}

.main-menu .navigation > li:first-child{
  margin-left: 0px !important;
}

.main-menu .navigation > li > a{
  position:relative;
  display:block;
  text-align:center;
  font-size:18px;
  line-height:27px;
  padding-top: 29px;
  padding-bottom: 29px;
  font-weight:700;
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: capitalize;
  z-index:1;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.main-menu .navigation > li.dropdown > a{
  padding-right: 17px;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a{
  color: #325549;
}

.main-menu .navigation > li.dropdown > a:before{
  position: absolute;
  content: "\f102";
  font-family: flaticon_flexibank;
  top: 30px;
  right: -4px;
  font-size: 14px;
  color: #a8a7a7;
  transition: all 500ms ease;
}

.main-menu .navigation > li.current > a:before,
.main-menu .navigation > li:hover > a:before{
  color: #325549;
  transform: rotate(90deg);
}

.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu{
  position:absolute;
  left: inherit;
  top:100%;
  width:270px;
  margin-top: 15px;
  z-index:100;
  display:none;
  background: #fff;
  opacity: 0;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
  visibility: hidden;
  border-radius: 0px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li{
  position:relative;
  width:100%;
}

.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > .megamenu li > a{
  position:relative;
  display:block;
  padding: 14px 30px;
  line-height:24px;
  font-weight:400;
  font-size:17px;
  text-transform:capitalize;
  font-family: var(--text-font);
  color:var(--text-color);
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > a{
  border-bottom: 1px solid #e6e4e4;
}

.main-menu .navigation > li > .megamenu li > a{
  padding-left: 0px;
}

.main-menu .navigation > li > .megamenu h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}

.main-menu .navigation > li > ul > li > a:hover,
.main-menu .navigation > li > .megamenu li > a:hover{
  color: #fff;
  background: #325549;
  border-color: #325549;
}

.main-menu .navigation > li > ul > li:last-child > a,
.main-menu .navigation > li > .megamenu li:last-child > a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li.dropdown > a:after{
  content: "\f102";
  font-family: flaticon_flexibank;
  position:absolute;
  right:30px;
  top:12px;
  display:block;
  line-height:24px;
  font-size:16px;
  color: #a8a7a7;
  text-align:center;
  z-index:5;  
  transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li.dropdown > a:hover:after{
  color: #fff;
}

.main-menu .navigation > li > ul > li > ul{
  position:absolute;
  left:100%;
  top:0%;
  margin-top: 30px;
  margin-left: 10px;
  background: #fff;
  width:270px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
  z-index:100;
  display:none;
  border-radius: 0px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul:before{
  position: absolute;
  content: '';
  background: transparent;
  width: 40px;
  height: 100%;
  left: -40px;
  top: 0px;
}

.main-menu .navigation > li > ul > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li > ul > li{
  position:relative;
  width:100%;
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > ul > li > a{
  position:relative;
  display:block;
  padding:14px 30px;
  line-height:24px;
  font-weight:400;
  font-size:17px;
  text-transform:capitalize;
  font-family: var(--text-font);
  color: var(--text-color);
  border-bottom: 1px solid #e6e4e4;
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:last-child > a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover{
  color: #fff;
  background: #325549;
  border-color: #325549;
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position:absolute;
  right:20px;
  top:12px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:900;
  z-index:5;  
}

.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:hover > .megamenu{
  visibility:visible;
  opacity:1;
  margin-top: 0px;
  top: 100%;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul{
  visibility:visible;
  opacity:1;
  top: 0%; 
  margin-top: 15px;
}

.main-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:-32px;
  top:66px;
  width:34px;
  height:30px;
  text-align:center;
  font-size:18px;
  line-height:26px;
  color:#3b3b3b;
  cursor:pointer;
  display: none;
  z-index:5;
  transition: all 500ms ease;
}

.main-menu .navigation li.current.dropdown .dropdown-btn,
.main-menu .navigation li:hover .dropdown-btn{
  
}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn{
  display: none;
}

.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  background: var(--secondary-color);
  display: none;
}

.mobile-menu .nav-logo img{
  max-width: 160px;
}

.menu-area .mobile-nav-toggler .icon-bar{
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #fff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child{
  margin-bottom: 0px;
}


/** megamenu-style **/

.main-menu .navigation > li.dropdown > .megamenu{
  position: absolute;
  width: 100%;
  padding: 30px 50px;
  left: 0px;
}

.main-menu .navigation li.dropdown .megamenu li h4{
  margin-bottom: 10px;
}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler{
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color:#3786ff;
  display: none;
}

.mobile-menu{
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right:30px;
  max-width:100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 900ms ease;
}

.mobile-menu .navbar-collapse{
  display:block !important; 
}

.mobile-menu .nav-logo{
  position:relative;
  padding:50px 25px;
  text-align:left;  
  padding-bottom: 100px;
}

.mobile-menu-visible{
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-backdrop{
  position: fixed;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 900ms ease;
  background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
  opacity: 0.70;
  visibility: visible;
  right: 100%;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s
}

.mobile-menu .menu-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #000;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 900ms ease !important;
}

.mobile-menu-visible .mobile-menu .menu-box{
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn{
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  -webkit-transition:all 0.9s ease;
  -moz-transition:all 0.9s ease;
  -ms-transition:all 0.9s ease;
  -o-transition:all 0.9s ease;
  transition:all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn{
  -webkit-transform:rotate(360deg);
  -ms-transform:rotate(360deg);
  transform:rotate(360deg);
}

.mobile-menu .close-btn:hover{
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);
}

.mobile-menu .navigation{
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li{
  position: relative;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > ul > li:first-child{
  border-top: 1px solid rgba(255,255,255,0.10);
}

.mobile-menu .navigation li > a{
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li ul li > a{
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.mobile-menu .navigation li > a:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  height:0;
  border-left:5px solid #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .navigation li.current > a:before{
  height:100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:6px;
  top:6px;
  width:32px;
  height:32px;
  text-align:center;
  font-size:16px;
  line-height:32px;
  color:#ffffff;
  background:rgba(255,255,255,0.10);
  cursor:pointer;
  border-radius:2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
  z-index:5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open{
  color: #ffffff;
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);  
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul,
.mobile-menu .navigation > li.dropdown > .megamenu{
  display: none;
}

.mobile-menu .social-links{
  position:relative;
  padding:0px 25px;
}

.mobile-menu .social-links li{
  position:relative;
  display:inline-block;
  margin:0px 10px 10px;
}

.mobile-menu .social-links li a{
  position:relative;
  line-height:32px;
  font-size:16px;
  color:#ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.mobile-menu .social-links li a:hover{
  color: #325549;
}

div#mCSB_1_container{
  top: 0px !important;
}

.mobile-menu .contact-info {
  position: relative;
  padding: 120px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a{
  color: rgba(255,255,255,0.80);
}

.mobile-menu .contact-info ul li a:hover{
  color: #325549;
}

.mobile-menu .contact-info ul li:last-child{
  margin-bottom: 0px;
}

.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav{
  display: none !important;
}

.owl-nav button{
  background: transparent;
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.float-bob-x{
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes bounceSlide {
  0%,20%,50%,80%,100% {
      -webkit-transform: translateY(0);
      transform: translateY(0)
  }

  40% {
      -webkit-transform: translateY(-30px);
      transform: translateY(-30px)
  }

  60% {
      -webkit-transform: translateY(-15px);
      transform: translateY(-15px)
  }
}

@keyframes bounceSlide {
  0%,20%,50%,80%,100% {
      -webkit-transform: translateY(0);
      transform: translateY(0)
  }

  40% {
      -webkit-transform: translateY(-30px);
      transform: translateY(-30px)
  }

  60% {
      -webkit-transform: translateY(-15px);
      transform: translateY(-15px)
  }
}

.bounce-slide {
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: bounceSlide;
  animation-name: bounceSlide
}


.tabs-box .tab{
  display:none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.tabs-box .tab.active-tab{
  display:block;  
}

.tabs-box .tab{
  transform:scale(0.9,0.9) translateY(0px);
}

.tabs-box .tab.active-tab{
  transform:scale(1) translateY(0px);
}


.accordion-box .block .acc-content,
.accordion-inner .block .acc-content {
  position: relative;
  display: none;
}

.accordion-box .block .acc-content.current,
.accordion-inner .block .acc-content.current {
  display: block;
}


.zoom-fade{
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}


/** banner-section **/

.banner-section{
  position: relative;
  background: #646464;
}

.banner-section .outer-container{
  position: relative;
  padding: 0px 180px;
}
  
.banner-carousel .slide-item{
  position: relative;
  padding: 180px 0px;
  overflow: hidden;
}

.banner-section .banner-carousel .content-box{
  position: relative;
  max-width: 600px;
  width: 100%;
  z-index: 5;
}

.banner-section .banner-carousel .slide-item .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: calc(50% + 85px);
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}
  
.banner-carousel .slide-item .bg-layer{
  position: absolute;
  right:0;
  top:0;
  width:calc(50% + 235px);
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform:scale(1);
  -ms-transform:scale(1);
  transform:scale(1);
  -webkit-transition: all 8000ms linear;
  -moz-transition: all 8000ms linear;
  -ms-transition: all 8000ms linear;
  -o-transition: all 8000ms linear;
  transition: all 8000ms linear;
}
  
.banner-carousel .active .slide-item .bg-layer{
  -webkit-transform:scale(1.25);
  -ms-transform:scale(1.25);
  transform:scale(1.25);
}

.banner-carousel .content-box h5{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  margin-bottom: 25px;
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box h5{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.banner-carousel .content-box h5 span{
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 20px;
  background: #325549;
  margin-right: 30px;
}

.banner-carousel .content-box h5 span:before,
.banner-carousel .content-box h5 span:after{
  position: absolute;
  content: '';
  background: #325549;
  width: 20px;
  height: 20px;
  right: -19px;
}

.banner-carousel .content-box h5 span:before{
  top: 0px;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
}

.banner-carousel .content-box h5 span:after{
  bottom: 0px;
  clip-path: polygon(0% 0%, 0% 0%, 100% 100%, 0% 100%, 0% 0%);
}
  
.banner-carousel .content-box h2{
  display: block;
  font-size: 72px;
  line-height: 80px;
  color: #fff;
  margin-bottom: 40px;
  opacity: 0;
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box h2{
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.banner-section .banner-carousel .content-box .btn-box .theme-btn:before{
  background: #fff;
}

.banner-section .banner-carousel .content-box .btn-box .theme-btn:hover{
  color: #325549 !important;
}
  
.banner-carousel .content-box .btn-box{
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box .btn-box{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.owl-nav button span:before{
  font-family: "flaticon_flexibank" !important;
}

.banner-section .banner-carousel .owl-nav{
  position: absolute;
  left: -53px;
  width: 270px;
  top: 50%;
  transform: rotate(90deg);
  z-index: 99;
}

.banner-section .banner-carousel .owl-nav button{
  position: absolute;
  top: 0px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  transition: all 500ms ease;
}

.banner-section .banner-carousel .owl-nav button.owl-prev{
  left: -6px;
  transform: rotate(180deg);
  top: -4px;
}

.banner-section .banner-carousel .owl-nav button.owl-next{
  right: -4px;
}

.banner-section .banner-carousel .owl-dots{
  position: absolute;
  left: -64px;
  top: 53%;
  width: 270px;
  z-index: 1;
  transform: rotate(90deg);
}

.banner-section .banner-carousel .owl-dots:before{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.20);
  width: 225px;
  height: 1px;
  left: -15px;
  top: 14px;
}

.banner-section .banner-carousel .owl-dots button span{
  display: none !important;
}

.banner-section .banner-carousel .owl-dots button{
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 3px solid #fff;
  background: #5d0c09;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  margin: 0px 25px;
  box-shadow: 0px 0px 0px 10px #5d0c09;
  transition: all 500ms ease;
}

.banner-section .banner-carousel .owl-dots button.active{
  background: #325549;
}


/** online-service **/

.online-service{
  position: relative;
}

.online-service .inner-container{
  position: relative;
  display: block;
  background: #f5f4f4;
  z-index: 2;
}

.online-service .inner-container:before{
  position: absolute;
  content: '';
  background: #f5f4f4;
  width: 5000px;
  height: 100%;
  top: 0px;
  right: 0px;
  z-index: -1;
}

.online-service .left-content{
  position: relative;
  padding: 32px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: -195px;
}

.online-service .left-content .info-box{
  position: relative;
  display: block;
  padding: 0px 0px 0px 65px;
}

.online-service .left-content .info-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 3px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
}

.online-service .left-content .info-box h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0px;
}

.online-service .left-content .btn-box{
  position: relative;
  display: flex;
  align-items: center;
}

.online-service .left-content .btn-box a{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 20px;
}

.online-service .left-content .btn-box a:last-child{
  margin: 0px !important;
}

.online-service .left-content .btn-box a.play-store{
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--title-color);
  text-transform: capitalize;
  padding: 13px 27px;
  border: solid;
  border-width: 2px;
  border-color: #325549;
}

.online-service .left-content .btn-box a.play-store i{
  font-size: 16px;
  color: #325549;
  transition: all 500ms ease;
}

.online-service .left-content .btn-box a.play-store:hover{
  background: #325549;
  color: #fff;
}

.online-service .left-content .btn-box a.play-store:hover i{
  color: #fff;
}

.online-service .left-content .btn-box a.apple-store{
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  font-weight: 700;
  color: #fff;
  background: #325549;
  text-transform: capitalize;
  padding: 13px 27px;
  border: solid;
  border-width: 2px;
  border-color: #325549;
}

.online-service .left-content .btn-box a.apple-store i{
  font-size: 16px;
}

.online-service .left-content .btn-box a.apple-store:hover{
  background: transparent;
  color: #325549;
}

.online-service .row.d_flex{
  display: flex;
  align-items: flex-end;
}

.online-service .right-content{
  position: relative;
  margin-top: -202px;
  background: #fff;
}

.online-service .right-content .image-box{
  position: relative;
  display: block;
}

.online-service .right-content .image-box img{
  width: 100%;
}

.online-service .right-content .content-box{
  position: relative;
  margin-left: -30px;
}

.online-service .right-content .content-box h4{
  position: relative;
  display: block;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background: #325549;
  padding: 13px 15px;
}

.online-service .right-content .content-box h4:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 14px;
  height: 10px;
  left: 50%;
  margin-left: -7px;
  bottom: 0px;
  clip-path: polygon(0% 0%, 50% 0%, 100% 100%, 0% 100%, 50% 0%);
}

.online-service .right-content .content-box .service-list{
  position: relative;
  padding: 20px;
}

.online-service .right-content .content-box .service-list li{
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.online-service .right-content .content-box .service-list li:last-child{
  margin-bottom: 0px;
}

.online-service .right-content .content-box .service-list li a{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.12);
  padding: 11px 10px;
  padding-left: 20px;
}

.online-service .right-content .content-box .service-list li a:hover{
  background: #325549;
  color: #fff;
}

.online-service .right-content .content-box .service-list li a i{
  position: absolute;
  display: inline-block;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  line-height: 38px;
  background: #f5f4f4;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  color: #a8a7a7;
}

.online-service .right-content .content-box .link-box{
  position: relative;
  display: block;
  background: #f5f4f4;
  padding: 14px 15px;
  text-align: center;
}

.online-service .right-content .content-box .link-box a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: var(--title-color);
}

.online-service .right-content .content-box .link-box a:hover{
  color: #325549;
}

.online-service .right-content .content-box .link-box a span{
  color: #325549;
  margin-right: 10px;
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
}


/** banking-service **/

.banking-service{
  position: relative;
}

.banking-service .tab-btn-box{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
  text-align: center;
}

.banking-service .tab-btn-box .owl-nav{
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -60px;
  width: 100%;
}

.banking-service .tab-btn-box .owl-nav button{
  position: absolute;
  display: inline-block;
  top: 0px;
  width: 46px;
  height: 120px;
  line-height: 120px;
  font-size: 24px;
  background: #f4f3f3;
  color: var(--title-color);
  cursor: pointer;
  transition: all 500ms ease;
}

.banking-service .tab-btn-box .owl-nav button:hover{
  color: #fff;
  background: #325549;
}

.banking-service .tab-btn-box .owl-nav button.owl-prev{
  left: -46px;
}

.banking-service .tab-btn-box .owl-nav button.owl-next{
  right: -46px;
}

.banking-service .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.banking-service .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  visibility: hidden;
}

.banking-service .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
  visibility: visible;
}

.banking-service .tab-btn{
  position: relative;
  display: block;
  background: #fff;
  padding: 60px 20px 32px 20px;
  border-right: 1px solid #e6e4e4;
  cursor: pointer;
}

.banking-service .tab-btn:before{
  position: absolute;
  content: '';
  background: #325549;
  width: 24px;
  height: 18px;
  left: 50%;
  margin-left: -12px;
  bottom: -9px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
  opacity: 0;
  transition: all 500ms ease;
}

.banking-service .tab-btn.active-btn:before{
  opacity: 1;
}

.banking-service .tab-btn .icon-box{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
  margin-bottom: 39px;
}

.banking-service .tab-btn .icon-box img{
  display: inline-block;
}

.banking-service .tab-btn .icon-box:after{
  position: absolute;
  content: '';
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  z-index: -1;
  border-radius: 50%;
  left: 0px;
  top: 0px;
}

.banking-service .tab-btn .icon-box:before{
  position: absolute;
  content: '';
  background: #f5f4f4;
  width: 110px;
  height: 110px;
  left: -20px;
  top: -20px;
  border-radius: 50%;
  z-index: -1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 0%);
  transition: all 500ms ease;
}

.banking-service .tab-btn h3{
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 8px;
}

.banking-service .tab-btn.active-btn .icon-box:before{
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.banking-service .image-box{
  position: relative;
  display: block;
}

.banking-service .image-box img{
  width: 100%;
}

.banking-service .content-box{
  position: relative;
  display: block;
}

.banking-service .content-box h2{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 20px;
}

.banking-service .content-box p{
  margin-bottom: 26px;
}

.banking-service .content-box .inner-box{
  position: relative;
  display: block;
  padding-right: 290px;
  margin-bottom: 40px;
}

.banking-service .content-box .inner-box h6{
  display: block;
  font-size: 15px;
  line-height: 24px;
  text-transform: uppercase;
  color: #325549;
  margin-bottom: 15px;
}

.banking-service .content-box .inner-box .inner{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 220px;
  background: #fff;
  padding: 25px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
}

.banking-service .content-box .inner-box .inner .icon-box{
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.list-style-one li{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: 15px;
  padding-left: 65px;
}

.list-style-one li:last-child{
  margin-bottom: 0px;
}

.list-style-one li .icon-box{
  position: absolute;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #f5f4f4;
  text-align: center;
  border-radius: 50%;
  left: 0px;
  top: 4px;
}

.banking-service .content-box .inner-box .inner h4{
  display: block;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 3px;
}

.banking-service .content-box .inner-box .inner h6{
  display: block;
  font-size: 15px;
  line-height: 20px;
  color: #a8a7a7;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.banking-service .content-box .inner-box .inner .theme-btn{
  width: 100%;
  padding: 11px 30px;
}

.banking-service .content-box .lower-text{
  position: relative;
  display: block;
  padding-left: 25px;
}

.banking-service .content-box .lower-text .icon-box{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 20px;
  color: #325549;
}

.banking-service .content-box .lower-text h5{
  font-size: 18px;
  line-height: 26px;
}

.banking-service .content-box .lower-text h5 a{
  display: inline-block;
  color: #325549;
  text-decoration: underline;
}

.bg-color-1{
  background: #f5f4f4 !important;
}

.bg-color-2{
  background: #f5f6f8 !important;
}

.bg-color-3{
  background: var(--secondary-color) !important;
}

.banking-service .tab-btn-box .owl-nav button.owl-prev span{
  position: relative;
  display: inline-block;
  transform: rotate(180deg);
}


/** secure-growth **/

.secure-growth{
  position: relative;
  padding: 113px 0px;
}

.growth-block-one .inner-box{
  position: relative;
  display: block;
  padding: 32px 30px 25px 68px;
  z-index: 1;
  margin-bottom: 30px;
}

.growth-block-one .inner-box:before{
  position: absolute;
  content: '';
  background: #fff;
  width: calc(100% - 40px);
  height: 100%;
  top: 0px;
  right: 0px;
  z-index: -1;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
}

.growth-block-one .inner-box:after{
  position: absolute;
  content: '';
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  top: 20px;
  right: 10px;
  border: 1px solid #325549;
  background: transparent;
  z-index: -2;
  transition: all 500ms ease;
}

.growth-block-one .inner-box:hover:after{
  background: #325549;
}

.growth-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 11px;
}

.growth-block-one .inner-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.growth-block-one .inner-box h3 a:hover{
  color: #325549;
}

.growth-block-one .inner-box p{
  margin-bottom: 32px;
}

.growth-block-one .inner-box .image-box{
  position: relative;
  display: block;
  margin-left: -68px;
  margin-bottom: 25px;
  padding-right: 40px;
}

.growth-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}

.growth-block-one .inner-box .image-box .image img{
  width: 100%;
  transition: all 500ms ease;
}

.growth-block-one .inner-box:hover .image-box .image img{
  transform: scale(1.1);
}

.growth-block-one .inner-box .image-box .icon-box{
  position: absolute;
  display: inline-block;
  top: 50%;
  margin-top: -32px;
  right: 8px;
  width: 65px;
  height: 63px;
  line-height: 59px;
  text-align: center;
  font-size: 40px;
  color: #325549;
  z-index: 1;
}

.growth-block-one .inner-box .image-box .icon-box:before{
  position: absolute;
  content: '';
  background: #f5f4f4;
  width: 65px;
  height: 63px;
  left: 0px;
  top: 0px;
  z-index: -1;
  transform: rotate(45deg);
  transition: all 500ms ease;
}

.growth-block-one .inner-box:hover .image-box .icon-box:before{
  transform: rotate(0deg);
}

.growth-block-one .inner-box .image-box .icon-box img{
  display: inline-block;
}

.growth-block-one .inner-box .link-box a{
  position: relative;
  display: inline-block;
  padding-left: 26px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: var(--title-color);
}

.growth-block-one .inner-box .link-box a:hover{
  color: #325549;
}

.growth-block-one .inner-box .link-box a i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 22px;
  color: #325549;
}

.secure-growth .more-text{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
}

.secure-growth .more-text h5 i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 20px;
  color: #325549;
}

.secure-growth .more-text h5{
  font-size: 18px;
  line-height: 26px;
  padding-left: 25px;
}

.secure-growth .more-text h5 a{
  display: inline-block;
  color: #325549;
  text-decoration: underline;
}

.nav-style-one .owl-nav button{
  position: relative;
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  border: 1px solid #e2e0e0;
  background: transparent;
  text-align: center;
  font-size: 24px;
  color: #a8a7a7;
  cursor: pointer;
  transition: all 500ms ease;
}

.nav-style-one .owl-nav button:hover{
  color: #fff;
  background: #325549;
  border-color: #325549;
}

.nav-style-one .owl-nav button.owl-prev{
  margin-right: 10px;
}

.nav-style-one .owl-nav button.owl-prev span{
  position: relative;
  display: inline-block;
  transform: rotate(180deg);
  top: -4px;
  left: -2px;
}

.secure-growth .owl-nav{
  position: absolute;
  top: -115px;
  right: 0px;
}

.tabs-box-2 .tab-2{
  position:relative;
  display:none;
}

.tabs-box-2 .tab-2.active-tab-2{
  display:block;  
}

.tabs-box-2 .tab-2{
  transform:scale(0) translateY(0px);
}

.tabs-box-2 .tab-2.active-tab-2{
  transform:scale(1) translateY(0px);
}


/** custom-banking **/

.custom-banking{
  position: relative;
}

.custom-banking .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: calc(100% - 240px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.custom-banking .tab-btn-one{
  position: relative;
  z-index: 1;
}

.custom-banking .tabs-box{
  position: relative;
  background: #f5f4f4;
  margin-left: 40px;
  z-index: 1;
}

.custom-banking .tabs-box:before{
  position: absolute;
  content: '';
  background: #f5f4f4;
  width: 5000px;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
}

.custom-banking .tabs-box .tab-btn-one{
  position: absolute;
  left: -40px;
  top: 0px;
  width: 40px;
  writing-mode: vertical-lr;
  background: #f5f4f4;
  display: flex;
  align-items: center;
}

.custom-banking .tabs-box .tab-btn-one .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
}

.custom-banking .tabs-box .tab-btn-one .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  font-family: var(--title-font);
  color: #a8a7a7;
  background: #f5f4f4;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  padding: 26px 8px;
}

.custom-banking .tabs-box .tab-btn-one .tab-btns li.active-btn{
  background: #325549;
  color: #fff;
}

.custom-banking .tabs-box .tab-btn-two{
  position: relative;
  margin-right: 30px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
}

.custom-banking .tabs-box .tab-btn-two li{
  position: relative;
  display: block;
  padding: 17px 20px 17px 30px;
  border-bottom: 1px solid #e6e4e4;
  cursor: pointer;
}

.custom-banking .tabs-box .tab-btn-two li h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 3px;
  opacity: 0.4;
}

.custom-banking .tabs-box .tab-btn-two li.active-btn-2 h4{
  opacity: 1;
}

.custom-banking .content-box{
  position: relative;
  display: block;
  padding-top: 74px;
}

.custom-banking .content-box .title-box{
  position: relative;
  display: block;
  padding: 0px 0px 0px 95px;
  margin-bottom: 29px;
}

.custom-banking .content-box .title-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 3px;
  width: 66px;
  height: 66px;
  line-height: 66px;
  background: #eaeaea;
  text-align: center;
}

.custom-banking .content-box .title-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #a8a7a7;
  margin-bottom: 0px;
}

.custom-banking .content-box .title-box h2{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 44px;
}

.custom-banking .content-box .inner-box{
  position: relative;
  display: block;
  padding-right: 290px;
}

.custom-banking .content-box .inner-box p{
  margin-bottom: 30px;
}

.custom-banking .content-box .inner-box .single-item{
  position: relative;
  display: block;
  margin-bottom: 42px;
}

.custom-banking .content-box .inner-box .single-item h2{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 4px;
}

.custom-banking .content-box .inner-box .single-item p{
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.custom-banking .content-box .inner-box .single-item p:before{
  position: absolute;
  content: '';
  background: #e2e0e0;
  width: 70px;
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.custom-banking .content-box .inner-box .single-item .growth-box{
  position: relative;
  display: block;
  font-size: 17px;
  color: var(--title-color);
  padding-left: 35px;
  text-transform: uppercase;
}

.custom-banking .content-box .inner-box .single-item .growth-box img{
  position: absolute;
  left: 0px;
  top: 5px;
}

.custom-banking .content-box .inner-box .btn-box .theme-btn{
  background: var(--secondary-color);
}

.custom-banking .content-box .inner-box .btn-box .theme-btn:before{
  background: #325549;
}

.custom-banking .content-box .inner-box .form-inner{
  position: absolute;
  top: 5px;
  right: 0px;
  width: 270px;
  background: #fff;
  padding: 25.5px 25px;
}

.custom-banking .content-box .inner-box .form-inner h3{
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 19px;
}

.custom-banking .content-box .inner-box .form-inner .form-group{
  position: relative;
  margin-bottom: 15px;
}

.custom-banking .content-box .inner-box .form-inner .form-group:last-child{
  margin-bottom: 0px;
}

.custom-banking .content-box .inner-box .form-inner .form-group .icon-box{
  position: absolute;
  top: 13px;
  right: 20px;
  z-index: 1;
}

.custom-banking .content-box .inner-box .form-inner .form-group input[type='text'],
.custom-banking .content-box .inner-box .form-inner .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 52px;
  background: #f5f4f4;
  border: 1px solid #f5f4f4;
  padding: 10px 45px 10px 20px;
  font-size: 17px;
  color: #a8a7a7;
}

.custom-banking .content-box .inner-box .form-inner .form-group input:focus{
  border-color: #325549;
}

.custom-banking .content-box .inner-box .form-inner .message-btn button{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  padding-left: 26px;
  transition: all 500ms ease;
}

.custom-banking .content-box .inner-box .form-inner .message-btn button i{
  position: absolute;
  left: 0px;
  top: 4px;
  font-size: 20px;
  font-weight: 700;
}

.custom-banking .content-box .inner-box .form-inner .message-btn button:hover{
  color: #325549;
}

.custom-banking .title-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin-bottom: 48px;
}

.custom-banking .title-box .sec-title{
  margin-bottom: 0px;
}

.custom-banking .title-box .support-box{
  position: relative;
  padding-left: 30px;
}

.custom-banking .title-box .support-box:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 1px;
  height: 74px;
  left: 0px;
  top: 5px;
  opacity: 0.15;
}

.custom-banking .title-box .support-box h5{
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  opacity: 0.5;
  margin-bottom: 8px;
}

.custom-banking .title-box .support-box .phone-box{
  position: relative;
  display: block;
  padding-left: 38px;
}

.custom-banking .title-box .support-box .phone-box .icon-box{
  position: absolute;
  left: 0px;
  top: 4px;
}

.custom-banking .title-box .support-box .phone-box a{
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
}

.custom-banking .title-box .support-box .phone-box a:hover{
  text-decoration: underline;
}

.custom-banking .title-box .support-box .phone-box span{
  position: relative;
  display: block;
  color: #fff;
  opacity: 0.5;
}

.custom-banking .tabs-box .support-image{
  position: absolute;
  right: 0px;
  top: -162px;
}

.custom-banking .content-box .inner-box .single-item{
  padding-left: 28px;
}

.custom-banking .content-box .inner-box .single-item:before{
  position: absolute;
  content: '';
  background: #e2e0e0;
  width: 3px;
  height: calc(100% - 10px);
  left: 0px;
  top: 6px;
}


/** funfact-section **/

.funfact-section{
  position: relative;
}

.funfact-section .funfact-block-one{
  position: relative;
  float: left;
  width: 25%;
}

.funfact-block-one .inner-box{
  position: relative;
  display: block;
  padding: 50px 50px 43px 50px;
  border-right: 1px solid #e6e4e4;
}

.funfact-block-one:last-child .inner-box{
  border: none;
}

.funfact-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  margin-bottom: 17px;
}

.funfact-block-one .inner-box .count-outer{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 40px;
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 0px;
  padding-bottom: 13px;
  margin-bottom: 17px;
  border-bottom: 1px solid #e6e4e4;
}

.funfact-block-one .inner-box .count-outer .symble{
  position: relative;
  display: inline-block;
  font-weight: 400;
  top: -2px;
}

.funfact-section .outer-container{
  position: relative;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
}


/** calculator-section **/

.calculator-section{
  position: relative;
}

.calculator-section .inner-container{
  position: relative;
  display: block;
  background: #fff;
}

.calculator-section .tab-btns{
  position: relative;
}

.calculator-section .tab-btns .tab-btn{
  position: relative;
  display: block;
  float: left;
  width: 20%;
  text-align: center;
  padding: 21px 15px;
  background: var(--secondary-color);
  cursor: pointer;
}

.calculator-section .tab-btns .tab-btn:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 1px;
  height: 30px;
  top: 20px;
  right: 0px;
  opacity: 0.15;
}

.calculator-section .tab-btns .tab-btn:last-child:before{
  display: none;
}

.calculator-section .tab-btns .tab-btn h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  opacity: 0.5;
  transition: all 500ms ease;
}

.calculator-section .tab-btns .tab-btn.active-btn h4{
  opacity: 1;
}

.calculator-section .content-box{
  position: relative;
  display: block;
  padding: 43px 50px 50px 50px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
  margin-right: -50px;
}

.calculator-section .content-box .left-content .lower-text{
  position: relative;
  display: block;
  padding-left: 60px;
  min-height: 45px;
}

.calculator-section .content-box .left-content .lower-text .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 4px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #f5f4f4;
  text-align: center;
  border-radius: 50%;
}

.calculator-section .content-box .left-content .lower-text h5{
  font-size: 18px;
  line-height: 26px;
}

.calculator-section .content-box .left-content .lower-text h5 a{
  position: relative;
  display: inline-block;
  color: #325549;
  line-height: 18px;
  border-bottom: 1px solid #325549;
}

.calculator-section .content-box .left-content .sec-title{
  margin-bottom: 40px;
}

.progress-block-one{
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.progress-block-one:last-child{
  margin-bottom: 0px;
}

.progress-block-one .title-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}

.progress-block-one .title-box h5{
  display: block;
  font-size: 18px;
  line-height: 26px;
}

.progress-block-one .title-box h6{
  display: block;
  font-size: 16px;
  line-height: 24px;
}

.progress-block-one .inner-box{
  position: relative;
  display: block;
  border: 1px solid #e6e4e4;
  padding: 14px 18px 39px 18px;
}

.progress-block-one .inner-box .text-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.progress-block-one .inner-box .text-box span{
  font-size: 15px;
  line-height: 24px;
}

.progress-block-one .inner-box .bar{
  position:relative;
  width:100%;
  height:8px;
  background: #f5f4f4;
  border-radius: 40px;
}
  
.progress-block-one .inner-box .bar-inner{
  position:relative;
  display:block;
  width:0px;
  height:8px;
  background: var(--secondary-color);
  border-radius: 40px 0px 0px 40px;
  -webkit-transition:all 1500ms ease;
  -ms-transition:all 1500ms ease;
  -o-transition:all 1500ms ease;
  -moz-transition:all 1500ms ease;
  transition:all 1500ms ease; 
}

.progress-block-one .inner-box .bar-inner:before{
  position: absolute;
  content: '';
  background: #325549;
  width: 14px;
  height: 10px;
  right: -7px;
  bottom: -20px;
  clip-path: polygon(0% 0%, 50% 0%, 100% 100%, 0% 100%, 50% 0%);
}

.calculator-section .amount-box{
  position: relative;
  display: block;
  background: #f5f4f4;
  margin-left: 20px;
  padding: 85px 30px 48px 30px;
}

.calculator-section .amount-box .emi-box{
  position: relative;
  display: block;
  background: #325549;
  padding: 58px 20px 52px 20px;
  margin-bottom: 55px;
}

.calculator-section .amount-box .emi-box .icon-box{
  position: absolute;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
  left: 50%;
  margin-left: -35px;
  top: -35px;
}

.calculator-section .amount-box .emi-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #fff;
  opacity: 0.5;
  margin-bottom: 10px;
}

.calculator-section .amount-box .emi-box h3{
  font-size: 30px;
  line-height: 38px;
  color: #fff;
}

.calculator-section .amount-box .emi-box .btn-box{
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  width: 100%;
}

.calculator-section .amount-box .emi-box .btn-box .theme-btn{
  background: #fff;
  color: var(--title-color) !important;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
}

.calculator-section .amount-box .emi-box .btn-box .theme-btn span:before{
  color: #325549;
}

.calculator-section .amount-box .emi-box .btn-box .theme-btn:hover{
  color: #fff !important;
}

.calculator-section .amount-box .interest-amount .single-amount{
  position: relative;
  display: block;
  padding-left: 28px;
  padding-bottom: 18px;
  margin-bottom: 17px;
  border-bottom: 1px solid #e2e0e0;
}

.calculator-section .amount-box .interest-amount .single-amount:last-child{
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: none;
}

.calculator-section .amount-box .interest-amount .single-amount .icon-box{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 16px;
  color: #325549;
}

.calculator-section .amount-box .interest-amount .single-amount h5{
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 2px;
}

.calculator-section .amount-box .interest-amount .single-amount span{
  position: relative;
  display: block;
}

.calculator-section .image-layer{
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.calculator-section .big-text{
  position: absolute;
  right: 84px;
  bottom: 70px;
  font-size: 100px;
  line-height: 100px;
  font-family: var(--title-font);
  color: #f4f4f4;
  font-weight: 800;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  text-align: center;
}


/** creditcard-section **/

.creditcard-section{
  position: relative;
  background: var(--secondary-color);
}

.creditcard-section .card-inner{
  position: relative;
  display: block;
  padding: 160px 0px 160px 88px;
  margin-right: 30px;
}

.creditcard-section .card-inner .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: calc(100% - 110px);
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.creditcard-section .card-inner .card-box{
  position: relative;
  display: block;
}

.creditcard-section .card-inner .card-box img{
  width: 100%;
}

.creditcard-section .card-inner .highlights-one{
  position: absolute;
  top: 50px;
  right: 32px;
  font-size: 17px;
  font-weight: 500;
  color: var(--title-color);
  background: #fff;
  padding: 17px 20px;
}

.creditcard-section .card-inner .highlights-one:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 16px;
  height: 12px;
  right: 33px;
  bottom: -12px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
}

.creditcard-section .card-inner .highlights-two{
  position: absolute;
  left: 40px;
  bottom: 50px;
  font-size: 17px;
  font-weight: 500;
  color: var(--title-color);
  background: #fff;
  padding: 17px 20px;
}

.creditcard-section .card-inner .highlights-two:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 16px;
  height: 12px;
  right: 21px;
  top: -12px;
  clip-path: polygon(0% 0%, 50% 0%, 100% 100%, 0% 100%, 50% 0%);
}

.creditcard-section .content-box{
  position: relative;
  display: block;
}

.creditcard-section .content-box .tab-btns .tab-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.10);
  padding: 12px 20px;
  cursor: pointer;
  gap: 10px;
  transition: all 500ms ease;
}

.creditcard-section .content-box .tab-btns .tab-btn.active-btn{
  background: #325549;
}

.creditcard-section .content-box .tab-btns .tab-btn img{
  position: relative;
  opacity: 0.5;
  transition: all 500ms ease;
}

.creditcard-section .content-box .tab-btns .tab-btn.active-btn img{
  opacity: 1;
}

.creditcard-section .content-box .tab-btns .tab-btn h5{
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  opacity: 0.5;
  transition: all 500ms ease;
}

.creditcard-section .content-box .tab-btns .tab-btn.active-btn h5{
  opacity: 1;
}

.creditcard-section .content-box .inner-box{
  position: relative;
  display: block;
}

.creditcard-section .content-box .inner-box .text-box p{
  color: #fff;
  opacity: 0.7;
  max-width: 480px;
  margin-bottom: 13px;
}

.creditcard-section .content-box .inner-box .text-box a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #fff;
  padding-left: 26px;
}

.creditcard-section .content-box .inner-box .text-box a:hover{
  color: #325549;
}

.creditcard-section .content-box .inner-box .text-box a i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 22px;
  color: #325549;
}

.creditcard-section .content-box .inner-box .text-box{
  margin-bottom: 40px;
}

.creditcard-section .content-box .inner-box .form-inner h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 22px;
}

.creditcard-section .content-box .inner-box .form-inner .form-group{
  position: relative;
  margin-bottom: 0px;
  max-width: 370px;
}

.creditcard-section .content-box .inner-box .form-inner .form-group .icon-box{
  position: absolute;
  left: 24px;
  top: 14px;
  z-index: 1;
}

.creditcard-section .content-box .inner-box .form-inner .form-group input[type='text']{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.50);
  padding: 10px 140px 10px 54px;
  transition: all 500ms ease;
}

.creditcard-section .content-box .inner-box .form-inner .form-group input:focus{
  color: #fff;
  border-color: #fff;
}

.creditcard-section .content-box .inner-box .form-inner .form-group button[type='submit']{
  position: absolute;
  top: 9px;
  right: 9px;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: var(--title-color);
  background: #fff;
  gap: 10px;
  padding: 7px 17px;
  transition: all 500ms ease;
}

.creditcard-section .content-box .inner-box .form-inner .form-group button i{
  height: 20px;
  font-size: 22px;
  color: #325549;
  transition: all 500ms ease;
}

.creditcard-section .content-box .inner-box .form-inner .form-group button:hover{
  background: #325549;
  color: #fff;
}

.creditcard-section .content-box .inner-box .form-inner .form-group button:hover i{
  color: #fff;
}

.creditcard-section .pattern-layer{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 792px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.creditcard-section .big-text{
  position: absolute;
  left: 90px;
  top: 0px;
  height: 100%;
  text-align: center;
  writing-mode: vertical-lr;
  font-size: 100px;
  line-height: 100px;
  font-family: var(--title-font);
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.10);
  transform: rotate(180deg);
}


/** locker-facility **/

.locker-facility{
  position: relative;
}

.locker-facility .content-box{
  position: relative;
  display: block;
  margin-top: -8px;
}

.locker-facility .content-box .sec-title{
  margin-bottom: 38px;
}

.locker-facility .content-box .text-box p{
  margin-bottom: 24px;
}

.locker-facility .content-box .text-box h5{
  font-size: 18px;
  line-height: 26px;
  padding-left: 24px;
}

.locker-facility .content-box .text-box h5 i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 20px;
  color: #325549;
}

.locker-facility .content-box .text-box h5 a{
  display: inline-block;
  color: #325549;
  text-decoration: underline;
}

.locker-facility .content-box .text-box{
  margin-bottom: 38px;
}

.locker-facility .content-box .inner-box{
  position: relative;
  display: block;
  padding: 24px 50px 27px 30px;
  background: linear-gradient(90deg, #f5f4f4 50%, #fff 100%);
}

.locker-facility .content-box .inner-box h6{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #325549;
  padding-right: 155px;
  margin-bottom: 11px;
}

.locker-facility .content-box .inner-box h6:before{
  position: absolute;
  content: '';
  background: linear-gradient(90deg, #325549 50%, #f4f3f4 100%);
  width: 140px;
  height: 1px;
  top: 11px;
  right: 0px;
}

.locker-facility .content-box .inner-box .single-item{
  position: relative;
  display: block;
  padding-left: 65px;
  padding-right: 25px;
  min-height: 45px;
}

.locker-facility .content-box .inner-box .single-item .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 4px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
}

.locker-facility .content-box .inner-box .single-item p{
  font-weight: 500;
  color: var(--title-color);
}

.locker-facility .content-box .btn-box .theme-btn{
  background: var(--secondary-color);
}

.locker-facility .content-box .btn-box .theme-btn:before{
  background: #325549;
}

.locker-facility .content-box .btn-box .theme-btn span:before{
  color: #325549;
}

.locker-facility .content-box .btn-box .theme-btn:hover span:before{
  color: #fff;
}

.locker-facility .image-box{
  position: relative;
  display: block;
}

.locker-facility .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}

.locker-facility .image-box .image img{
  width: 100%;
  transition: all 500ms ease;
}

.locker-facility .image-box .image:hover img{
  transform: scale(1.05);
}


/** faq-section **/

.faq-section{
  position: relative;
}

.faq-section .category-box{
  position: relative;
  display: block;
  background: #fff;
  padding: 43px 30px 44px 30px;
}

.faq-section .category-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 12px;
}

.faq-section .category-box p{
  margin-bottom: 32px;
}

.faq-section .category-box .category-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.faq-section .category-box .category-list li a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 24px;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--text-color);
  background: #f5f4f4;
  padding: 8px 22px;
}

.faq-section .category-box .category-list li a:hover{
  color: #fff;
  background: #325549;
}

.faq-section .category-box .category-list{
  padding-bottom: 35px;
  border-bottom: 1px solid #e6e4e4;
  margin-bottom: 25px;
}

.faq-section .category-box .lower-box{
  position: relative;
  display: block;
  padding-left: 60px;
}

.faq-section .category-box .lower-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 4px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #e6e4e4;
  border-radius: 50%;
  text-align: center;
}

.faq-section .category-box .lower-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 4px;
}

.faq-section .category-box .lower-box a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  padding-left: 26px;
  color: var(--title-color);
}

.faq-section .category-box .lower-box a i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 20px;
  color: #325549;
}

.faq-section .category-box .lower-box a:hover{
  color: #325549;
}

.faq-section .accordion{
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
}

.faq-section .accordion:last-child{
  margin-bottom: 0px;
}

.faq-section .accordion .acc-btn{
  position: relative;
  padding: 15px 70px 15px 30px;
  cursor: pointer;
}

.faq-section .accordion .acc-btn.active{
  background: var(--secondary-color);
}

.faq-section .accordion .acc-btn h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  padding: 6px 0px 6px 60px;
  transition: all 500ms ease;
}

.faq-section .accordion .acc-btn.active h4{
  color: #fff;
}

.faq-section .accordion .acc-btn h4 span{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #f5f4f4;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  color: #a8a7a7;
  font-weight: 700;
}

.faq-section .accordion .acc-btn.active h4 span{
  color: #325549;
  background: #fff;
}

.faq-section .accordion .acc-btn .icon-box{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 68px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 20px;
  color: #a8a7a7;
}

.faq-section .accordion .acc-btn.active .icon-box{
  color: #325549;
}

.faq-section .accordion .acc-btn .icon-box i{
  position: relative;
  display: inline-block;
  transition: all 500ms ease;
}

.faq-section .accordion .acc-btn.active .icon-box i{
  transform: rotate(180deg);
}

.faq-section .accordion .acc-btn .icon-box:before{
  position: absolute;
  content: '';
  background: #e6e4e4;
  width: 1px;
  height: 40px;
  left: 0px;
  top: 15px;
}

.faq-section .accordion .acc-btn.active .icon-box:before{
  background: rgba(255, 255, 255, 0.15);
}

.faq-section .accordion .acc-content{
  padding: 25px 50px 22px 30px;
}


/** news-section **/

.news-section{
  position: relative;
}

.news-section .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.news-section .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  visibility: hidden;
}

.news-section .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
  visibility: visible;
}

.news-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 30px;
}

.news-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.news-block-one .inner-box .image-box img{
  width: 100%;
}

.news-block-one .inner-box .image-box .overlay-image{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translatey(-50%) scaleY(1.5);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.5s ease;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.news-block-one .inner-box:hover .image-box .overlay-image{
  transform: translatey(0) scaleY(1);
  opacity: 1;
  filter: blur(0);
}

.news-block-one .inner-box .image-box .overlay-image:before{
  position: absolute;
  content: '';
  background: var(--secondary-color);
  opacity: 0.9;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.news-block-one .inner-box .image-box .view-btn{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
}

.news-block-one .inner-box .image-box .view-btn a{
  position: relative;
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  background: #fff;
  text-align: center;
  transform: scale(0,0);
}

.news-block-one .inner-box .image-box .view-btn a img{
  display: inline-block;
  width: auto;
}

.news-block-one .inner-box:hover .image-box .view-btn a{
  transform: scale(1,1);
}

.news-block-one .inner-box .content-box{
  position: relative;
  display: block;
  padding: 21px 25px 26px 25px;
}

.news-block-one .inner-box .content-box .upper-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 23px;
  border-bottom: 1px solid #e9e8e8;
  margin-bottom: 20px;
}

.news-block-one .inner-box .content-box .upper-box .title-box h6{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: #325549;
  padding-left: 23px;
  margin-bottom: 4px;
}

.news-block-one .inner-box .content-box .upper-box .title-box h6 img{
  position: absolute;
  left: 0px;
  top: 4px;
}

.news-block-one .inner-box .content-box .upper-box .title-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
}

.news-block-one .inner-box .content-box .upper-box .title-box h5 span{
  color: #a8a7a7;
}

.news-block-one .inner-box .content-box .upper-box .title-box h5 a{
  display: inline-block;
  color: var(--title-color);
}

.news-block-one .inner-box .content-box .upper-box .title-box h5 a:hover{
  color: #325549;
}

.news-block-one .inner-box .content-box .upper-box .post-date h3{
  font-size: 28px;
  line-height: 30px;
  font-weight: 800;
}

.news-block-one .inner-box .content-box .upper-box .post-date h6{
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.news-block-one .inner-box .content-box .lower-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 11px;
}

.news-block-one .inner-box .content-box .lower-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.news-block-one .inner-box .content-box .lower-box h3 a:hover{
  color: #325549;
}

.news-block-one .inner-box .content-box .lower-box .link-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-block-one .inner-box .content-box .lower-box .link-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #a8a7a7;
  padding-left: 25px;
}

.news-block-one .inner-box .content-box .lower-box .link-box h5 img{
  position: absolute;
  left: 0px;
  top: 4px;
}

.news-block-one .inner-box .content-box .lower-box .link-box a{
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: var(--title-color);
}

.news-block-one .inner-box .content-box .lower-box .link-box a:hover{
  color: #325549;
}

.news-section .block-content .news-block-one .inner-box .content-box{
  padding-top: 24px;
  padding-bottom: 28px;
  min-height: 254px;
}

.news-section .owl-nav{
  position: absolute;
  top: -115px;
  right: 0px;
}


/** main-footer **/

.main-footer{
  position: relative;
  background: #f5f4f4;
}

.main-footer .widget-section{
  position: relative;
  padding: 120px 0px 153px 0px;
  border-bottom: 1px solid #e2e0e0;
}

.main-footer .widget-section:before{
  position: absolute;
  content: '';
  background: #e2e0e0;
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0px;
}

.main-footer .contact-widget .certified-box{
  position: relative;
  background: var(--secondary-color);
  padding: 19px 20px 18px 125px;
  margin-bottom: 48px;
}

.main-footer .contact-widget .certified-box .image-box{
  position: absolute;
  left: 29px;
  top: 25px;
}

.main-footer .contact-widget .certified-box h4{
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  max-width: 320px;
  margin-bottom: 10px;
}

.main-footer .contact-widget .certified-box span{
  position: relative;
  display: block;
  color: rgba(255, 255, 255, 0.50);
}

.main-footer .contact-widget .schedule-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.main-footer .contact-widget .schedule-inner h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 21px;
}

.main-footer .contact-widget .schedule-inner ul li{
  position: relative;
  display: block;
  color: var(--title-color);
  margin-bottom: 15px;
}

.main-footer .contact-widget .schedule-inner ul li:last-child{
  margin-bottom: 0px;
}

.main-footer .contact-widget .schedule-inner ul li a{
  display: inline-block;
  color: var(--title-color);
}

.main-footer .contact-widget .schedule-inner ul li a:hover{
  color: #325549;
}

.main-footer .contact-widget .schedule-inner ul li span{
  color: #8d8b8b;
}

.main-footer .contact-widget .support-box{
  position: relative;
  display: block;
  padding: 0px 0px 0px 60px;
}

.main-footer .contact-widget .support-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 7px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #e2e0e0;
  border-radius: 50%;
  text-align: center;
}

.main-footer .contact-widget .support-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 4px;
}

.main-footer .contact-widget .support-box h4 a{
  display: inline-block;
  color: var(--title-color);
}

.main-footer .contact-widget .support-box h4 a:hover{
  color: #325549;
}

.main-footer .contact-widget .support-box p{
  display: block;
  color: #8d8b8b;
}

.main-footer .contact-widget .support-box .link-box{
  position: absolute;
  top: 20px;
  right: 0px;
}

.main-footer .contact-widget .support-box .link-box a{
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: var(--title-color);
}

.main-footer .contact-widget .support-box .link-box a:hover{
  color: #325549;
}

.main-footer .widget-title{
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.main-footer .widget-title h3{
  font-size: 24px;
  line-height: 30px;
}

.main-footer .links-widget .links-list li{
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.main-footer .links-widget .links-list li:last-child{
  margin-bottom: 0px;
}

.main-footer .links-widget .links-list li a{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 26px;
  font-family: var(--text-font);
  color: var(--text-color);
  padding-right: 20px;
}

.main-footer .links-widget .links-list li a:hover{
  color: #325549;
}

.main-footer .links-widget .links-list li a i{
  position: absolute;
  top: 3px;
  right: 0px;
  font-size: 18px;
  color: #325549;
  opacity: 0;
  transition: all 500ms ease;
}

.main-footer .links-widget .links-list li a:hover i{
  opacity: 1;
}

.main-footer .footer-bottom{
  position: relative;
}

.main-footer .footer-bottom .bottom-top{
  position: relative;
  display: block;
  width: 100%;
  background: #eaeaea;
  padding: 20px 80px;
  margin-top: -42px;
  z-index: 1;
}

.main-footer .footer-bottom .bottom-top .list-item{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-footer .footer-bottom .bottom-top .list-item li{
  position: relative;
  display: inline-block;
  padding: 8px 0px 8px 60px;
}

.main-footer .footer-bottom .bottom-top .list-item li:before{
  position: absolute;
  content: '';
  background: #d5d5d5;
  width: 1px;
  height: 84px;
  top: -20px;
  right: -75px;
}

.main-footer .footer-bottom .bottom-top .list-item li:last-child:before{
  display: none;
}

.main-footer .footer-bottom .bottom-top .list-item li .icon-box{
  position: absolute;
  left: 0px;
  top: 0px;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #d5d5d5;
  border-radius: 50%;
  text-align: center;
}

.main-footer .footer-bottom .bottom-top .list-item li h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
}

.main-footer .footer-bottom .bottom-top .list-item li h4 a,
.main-footer .footer-bottom .bottom-top .list-item li h4 button{
  display: inline-block;
  color: var(--title-color);
  font-size: 20px;
  line-height: 28px;
  font-family: var(--title-font);
  font-weight: 700;
  transition: all 500ms ease;
}

.main-footer .footer-bottom .bottom-top .list-item li h4 a:hover,
.main-footer .footer-bottom .bottom-top .list-item li h4 button:hover{
  color: #325549;
}

.main-footer .footer-bottom .bottom-inner{
  position: relative;
  padding: 50px 0px 45px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-footer .footer-bottom .social-box span{
  position: relative;
  display: block;
  margin-bottom: 13px;
}

.main-footer .footer-bottom .social-box .social-links{
  position: relative;
  display: flex;
  align-items: center;
}

.main-footer .footer-bottom .social-box .social-links li{
  position: relative;
  display: inline-block;
  margin-right: 5px;
}

.main-footer .footer-bottom .social-box .social-links li:last-child{
  margin: 0px;
}

.main-footer .footer-bottom .social-box .social-links li a{
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 51px;
  background: #eaeaea;
  text-align: center;
  font-size: 20px;
  color: var(--title-color);
}

.main-footer .footer-bottom .social-box .social-links li a:hover{
  color: #fff;
  background: #325549;
}

.main-footer .footer-bottom .footer-logo{
  position: relative;
  display: block;
  text-align: center;
}

.main-footer .footer-bottom .footer-logo .logo{
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.main-footer .footer-bottom .copyright p a{
  color: #325549;
}

.main-footer .footer-bottom .footer-nav li{
  position: relative;
  display: inline-block;
  margin-left: 25px;
}

.main-footer .footer-bottom .footer-nav li:first-child{
  margin-left: 0px;
}

.main-footer .footer-bottom .footer-nav li a{
  display: inline-block;
  color: var(--text-color);
}

.main-footer .footer-bottom .footer-nav li a:hover{
  color: #325549;
}

.main-footer .footer-bottom .footer-nav li:last-child{
  display: block;
  text-align: right;
}


/** header-style-two **/

.header-style-two{
  position: relative;
  padding: 0px 40px;
}

.header-top-two{
  position: relative;
  padding: 7px 0px;
}

.header-top-two .outer-container{
  position: relative;
  padding: 0px 65px;
}

.header-top-two .service-list{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-two .service-list li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-top-two .service-list li a{
  position: relative;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  color: var(--title-color);
}

.header-top-two .service-list li a:hover{
  color: #325549;
}

.header-top-two .bar-box{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
}

.header-top-two .bar-box .bar{
  position: absolute;
  background: #d6d9de;
  width: 1px;
  height: 40px;
  top: 0px;
}

.header-top-two .bar-box .bar-1{
  left: 20%;
}

.header-top-two .bar-box .bar-2{
  left: 40%;
}

.header-top-two .bar-box .bar-3{
  left: 60%;
}

.header-top-two .bar-box .bar-4{
  left: 80%;
}

.header-top-two .service-list li:last-child:before{
  display: none;
}


.header-upper{
  position: relative;
  width: 100%;
  background: var(--secondary-color);
}

.header-upper .outer-container{
  padding: 0px;
  padding-left: 40px;
}

.header-upper .upper-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-upper .upper-inner .left-column{
  position: relative;
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 19.5px 0px;
}

.header-upper .upper-inner .left-column .logo-box{
  position: relative;
}

.header-upper .upper-inner .left-column .logo-box:before{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.10);
  width: 1px;
  height: 46px;
  top: -4.9px;
  right: -41px;
}

.header-upper .upper-inner .left-column .notification-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-upper .upper-inner .left-column .notification-box h5{
  font-size: 18px;
  line-height: 26px;
  color: #fff;
}

.header-upper .upper-inner .left-column .notification-box p{
  color: #a3a1ad;
}

.header-upper .upper-inner .left-column .notification-box a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 700;
  padding-left: 25px;
}

.header-upper .upper-inner .left-column .notification-box a i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 20px;
  color: #325549;
}

.header-upper .upper-inner .left-column .notification-box a:hover{
  color: #325549;
}

.header-upper .upper-inner .left-column .notification-box .icon-box{
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: #325549;
}

.header-upper .upper-inner .right-column{
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.header-upper .upper-inner .right-column:before{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.10);
  width: 1px;
  height: 46px;
  top: 15px;
  left: 0px;
}

.header-upper .upper-inner .right-column .search-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.header-upper .upper-inner .right-column .search-box span{
  position: relative;
  display: inline-block;
  color: #5a5a5d;
}

.header-upper .upper-inner .right-column .info-list{
  position: relative;
  display: flex;
  align-items: center;
}

.header-upper .upper-inner .right-column .info-list li a img{
  position: absolute;
  left: 40px;
  top: 23px;
}

.header-upper .upper-inner .right-column .info-list li a{
  position: relative;
  display: inline-block;
  padding: 12px 25px 12px 85px;
  background: #325549;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 700;
}

.header-upper .upper-inner .right-column .info-list li a span{
  position: relative;
  display: block;
  font-size: 17px;
  color: #88b9fb;
}

.header-upper .upper-inner .right-column .info-list li a:before{
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.15);
  width: 1px;
  height: 46px;
  top: 15px;
  right: 0px;
}

.header-upper .upper-inner .right-column .info-list li:last-child a:before{
  display: none;
}

.header-style-two .header-lower{
  position: relative;
}

.header-style-two .header-lower .outer-container{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  padding: 0px 40px;
  background: #fff;
}

.header-style-two .menu-right-content{
  gap: 50px;
}

.header-style-two .menu-right-content li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  line-height: 26px;
  margin: 0px;
}

.header-style-two .menu-right-content li:before{
  position: absolute;
  content: '';
  background: #e6e9ee;
  width: 1px;
  height: 40px;
  top: -7px;
  right: -25px;
}

.header-style-two .menu-right-content li:last-child:before{
  display: none;
}

.header-style-two .menu-right-content li.looking-box h5{
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}

.header-style-two .menu-right-content li.looking-box .nice-select{
  font-size: 17px;
  line-height: 26px;
  color: var(--title-color);
  font-weight: 500;
}

.header-style-two .menu-right-content li.looking-box .nice-select .list{
  width: 150px;
}

.header-style-two .menu-right-content li.looking-box .nice-select:before{
  color: #aeb2b6;
}

.header-style-two .main-menu .navigation > li > a{
  padding-top: 22px;
  padding-bottom: 21px;
}

.header-style-two .main-menu .navigation > li.dropdown > a:before{
  top: 23px;
}

.header-style-two .menu-right-content li.phone-box a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: var(--title-color);
}

.header-style-two .menu-right-content li.phone-box a:hover{
  color: #325549;
}

.header-style-two .menu-right-content .nav-toggler .side-panel-btn{
  border: none;
  width: 22px;
  height: 22px;
  line-height: 22px;
}


/** banner-style-two **/

.banner-style-two{
  position: relative;
}

.banner-style-two .banner-carousel .slide-item .bg-layer{
  width: 100%;
}

.banner-style-two .banner-carousel .slide-item{
  padding: 196px 0px 150px 0px;
}

.banner-style-two .banner-carousel .slide-item:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: linear-gradient(-90deg, rgba(27, 25, 39, 0.0) 0%, rgba(27, 25, 39, 1) 70%);
  z-index: 1;
}

.banner-style-two .banner-carousel .slide-item .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 626px;
  height: 606px;
  background-repeat: no-repeat;
  z-index: 1;
}

.banner-style-two .content-box{
  position: relative;
  z-index: 5;
}

.banner-style-two .content-box h2{
  margin-bottom: 22px;
  max-width: 560px;
}

.banner-style-two .content-box .inner-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 450px;
  opacity: 0;
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  transform: translateX(-50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-style-two .active .content-box .inner-box{
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.banner-style-two .content-box p{
  position: relative;
  font-size: 19px;
  line-height: 30px;
  color: #a3a1ad;
  margin-bottom: 30px;
  opacity: 0;
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  transform: translateX(-50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-style-two .active .content-box p{
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.banner-style-two .content-box .inner-box .single-item{
  position: relative;
  display: block;
  margin-bottom: 42px;
  padding-left: 28px;
}

.banner-style-two .content-box .inner-box .single-item:before{
  position: absolute;
  content: '';
  background: #026dfc;
  width: 3px;
  height: calc(100% - 14px);
  left: 0px;
  top: 7px;
}

.banner-style-two .content-box .inner-box .single-item h3{
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 4px;
  color: #fff;
}

.banner-style-two .content-box .inner-box .single-item span{
  position: relative;
  display: block;
  padding-bottom: 12px;
  margin-bottom: 15px;
  color: #a3a1ad;
}

.banner-style-two .content-box .inner-box .single-item span:before{
  position: absolute;
  content: '';
  background: #464550;
  width: 70px;
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.banner-style-two .content-box .inner-box .single-item .growth-box{
  position: relative;
  display: block;
  font-size: 17px;
  color: #fff;
  padding-left: 35px;
  text-transform: uppercase;
}

.banner-style-two .content-box .inner-box .single-item .growth-box img{
  position: absolute;
  left: 0px;
  top: 5px;
}

.banner-style-two .image-box{
  position: relative;
  display: block;
  z-index: 2;
}

.banner-style-two .image-box .image{
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-style-two .active .image-box .image{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-style-two .image-box img{
  width: 100%;
}

.banner-style-two .owl-dots{
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
}

.banner-style-two .dots-style-one .owl-dots button{
  border: 2px solid #a3a1ad;
}

.banner-style-two .dots-style-one .owl-dots button.active{
  top: 0px;
}

.banner-style-two .content-box .btn-box .theme-btn{
  background: #fff;
  color: var(--title-color) !important;
}

.banner-style-two .content-box .btn-box .theme-btn span:before{
  color: #325549;
}

.banner-style-two .content-box .btn-box .theme-btn:before{
  background: #325549;
}

.banner-style-two .content-box .btn-box .theme-btn:hover,
.banner-style-two .content-box .btn-box .theme-btn:hover span:before{
  color: #fff !important;
}


/** custom-banking-two **/

.custom-banking-two{
  position: relative;
  padding: 113px 0px;
}

.custom-banking-two .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.custom-banking-two .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  visibility: hidden;
}

.custom-banking-two .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
  visibility: visible;
}

.banking-block-one .inner-box{
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.banking-block-one .inner-box .text-box{
  position: relative;
  display: block;
  background: #fff;
  padding: 34px 30px 33px 30px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
  transition: all 500ms ease;
}

.banking-block-one .inner-box:hover .text-box{
  background: #f5f6f8;
  box-shadow: none;
}

.banking-block-one .inner-box .text-box h3{
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 12px;
}

.banking-block-one .inner-box .text-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.banking-block-one .inner-box .text-box h3 a:hover{
  color: #325549;
}

.banking-block-one .inner-box .image-box{
  position: relative;
  display: block;
  padding-bottom: 25px;
}

.banking-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}

.banking-block-one .inner-box .image-box .image img{
  width: 100%;
  transition: all 500ms ease;
}

.banking-block-one .inner-box:hover .image-box .image img{
  transform: scale(1.05);
}

.banking-block-one .inner-box .image-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  bottom: 0px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #325549;
  text-align: center;
}

.banking-block-one .inner-box .image-box .icon-box img{
  display: inline-block;
}

.banking-block-one .inner-box .image-box .icon-box:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 15px;
  height: 15px;
  left: 0px;
  bottom: 0px;
}

.banking-block-one .inner-box .image-box .btn-box{
  position: absolute;
  left: 70px;
  bottom: 0px;
}

.banking-block-one .inner-box .image-box .btn-box .theme-btn{
  background: #f5f6f8;
  color: var(--title-color) !important;
  padding: 13px 28px;
}

.banking-block-one .inner-box .image-box .btn-box .theme-btn span:before{
  color: #325549;
}

.banking-block-one .inner-box .image-box .btn-box .theme-btn:hover{
  color: #fff !important;
}

.dots-style-one .owl-dots button span{
  display: none !important;
}

.dots-style-one .owl-dots button{
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: solid;
  border-width: 1px;
  border-color: #e8ebf0;
  background: transparent;
  margin: 0px 7.5px;
  transition: all 500ms ease;
}

.dots-style-one .owl-dots button.active{
  border-color: #325549;
  border-width: 2px;
  top: -1px;
}

.custom-banking-two .dots-style-one .owl-dots{
  position: relative;
  text-align: center;
  width: 100px;
  margin: 0 auto;
  margin-top: 24px;
}

.custom-banking-two .dots-style-one .owl-dots:before,
.custom-banking-two .dots-style-one .owl-dots:after{
  position: absolute;
  content: '';
  background: #e6e9ee;
  width: 130px;
  height: 1px;
  top: 13px;
}

.custom-banking-two .dots-style-one .owl-dots:before{
  left: -133px;
}

.custom-banking-two .dots-style-one .owl-dots:after{
  right: -133px;
}

.custom-banking-two .more-text{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 27px;
}

.custom-banking-two .more-text h5 i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 20px;
  color: #325549;
}

.custom-banking-two .more-text h5{
  font-size: 18px;
  line-height: 26px;
  padding-left: 25px;
}

.custom-banking-two .more-text h5 a{
  display: inline-block;
  color: #325549;
  text-decoration: underline;
}

.shadow-none{
  box-shadow: none !important;
}


/** secure-growth-two **/

.secure-growth-two{
  position: relative;
}

.growth-block-two .inner-box{
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px 29px 24px 29px;
  background: #1c1a28;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.growth-block-two .inner-box:hover{
  border-color: #325549;
  background: #201e2d;
}

.growth-block-two .inner-box:before{
  position: absolute;
  content: '';
  width: 15px;
  height: 40px;
  left: -1px;
  top: 40px;
  background: #325549;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 0% 100%, 0% 0%);
}

.growth-block-two .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 30px;
  padding-bottom: 14px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.growth-block-two .inner-box h3 a{
  display: inline-block;
  color: #fff;
}

.growth-block-two .inner-box h3 a:hover{
  color: #325549;
}

.growth-block-two .inner-box .icon-box{
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.growth-block-two .inner-box .icon-box .icon{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #fff;
  text-align: center;
}

.growth-block-two .inner-box .icon-box .icon img{
  display: inline-block;
}

.growth-block-two .inner-box .icon-box .count-text{
  position: relative;
  display: inline-block;
  font-size: 70px;
  line-height: 52px;
  font-family: var(--title-font);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.10);
}

.growth-block-two .inner-box p{
  color: #a3a1ad;
  margin-bottom: 15px;
}

.growth-block-two .inner-box .list-item li{
  position: relative;
  display: block;
  border-bottom: 1px solid #3e3c48;
  padding: 8px 0px;
}

.growth-block-two .inner-box .list-item li:last-child{
  border-bottom: none;
}

.growth-block-two .inner-box .list-item li a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  color: #a3a1ad;
  padding-left: 24px;
}

.growth-block-two .inner-box .list-item li a:hover{
  color: #fff;
}

.growth-block-two .inner-box .list-item li a img{
  position: absolute;
  left: -3px;
  top: 6px;
  font-size: 20px;
  filter: grayscale(100%);
  transition: all 500ms ease;
}

.growth-block-two .inner-box .list-item li a:hover img{
  filter: grayscale(0%);
}

.secure-growth-two .owl-nav{
  position: absolute;
  top: -115px;
  right: 0px;
}

.secure-growth-two .owl-nav button{
  background: #32303d;
  border-color: #32303d;
  color: #a3a1ad;
}

.secure-growth-two .owl-nav button:hover{
  color: #fff;
  background: #325549;
  border-color: #325549;
}

.secure-growth-two .image-layer{
  position: absolute;
  right: 145px;
  bottom: 0px;
}

.secure-growth-two .image-layer img{
  filter: grayscale(100%);
}

.secure-growth-two .big-text{
  position: absolute;
  left: 135px;
  top: 0px;
  height: 100%;
  text-align: center;
  writing-mode: vertical-lr;
  font-size: 150px;
  line-height: 100px;
  font-family: var(--title-font);
  text-transform: uppercase;
  font-weight: 800;
  color: #232131;
  transform: rotate(180deg);
}


/** exchange-section **/

.exchange-section{
  position: relative;
  padding: 113px 0px;
}

.exchange-tab .p-tab {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
}

.exchange-tab .p-tab.active-tab {
  position: relative;
  visibility: visible;
  opacity: 1;
  z-index: 5;
}

.exchange-tab .p-tabs-content {
  position: relative;
  display: block;
}

.exchange-tab .p-tab.active-tab .four-item-carousel {
  opacity: 1;
}

.exchange-tab .p-tab .four-item-carousel {
  position: relative;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.exchange-section .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.exchange-section .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  visibility: hidden;
}

.exchange-section .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
  visibility: visible;
}

.exchange-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

.exchange-block-one .inner-box .upper-box{
  position: relative;
  padding: 21px 30px 48px 30px;
  border-bottom: 1px solid #e6e9ee;
}

.exchange-block-one .inner-box .currency-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exchange-block-one .inner-box .currency-box .currency-name h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.exchange-block-one .inner-box .currency-box .flag{
  position: relative;
  display: inline-block;
  border-radius: 50%;
}

.exchange-block-one .inner-box .currency-box .flag img{
  width: 100%;
  border-radius: 50%;
}

.exchange-block-one .inner-box .currency-box{
  margin-bottom: 15px;
}

.exchange-block-one .inner-box .buys-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exchange-block-one .inner-box .buys-box h5{
  font-size: 18px;
  line-height: 26px;
}

.exchange-block-one .inner-box .lower-box{
  padding: 44px 30px 24px 30px;
}

.exchange-block-one .inner-box .btn-box{
  position: absolute;
  left: 50%;
  bottom: -25px;
  margin-left: -20px;
}

.exchange-block-one .inner-box .btn-box button{
  position: relative;
  display: inline-block;
  width: 40px;
  height: 50px;
  line-height: 54px;
  background: #fff;
  font-size: 24px;
  color: #a8acb1;
  border: 1px solid #e6e9ee;
  border-radius: 50px;
  z-index: 1;
  transition: all 500ms ease;
}

.exchange-block-one .inner-box .btn-box button:hover{
  color: #325549;
  border-color: #325549;
}

.exchange-section .owl-nav{
  position: absolute;
  top: -96px;
  right: 0px;
}

.exchange-section .tab-btn-box{
  position: relative;
  margin-bottom: 40px;
  z-index: 1;
}

.exchange-section .tab-btn-box .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
}

.exchange-section .tab-btn-box .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: #a8acb1;
  font-weight: 700;
  border: 1px solid #d7d8da;
  padding: 10px 30px;
  cursor: pointer;
  margin-right: 10px;
  transition: all 500ms ease;
}

.exchange-section .tab-btn-box .tab-btns li:last-child{
  margin: 0px !important;
}

.exchange-section .tab-btn-box .tab-btns li.active-btn{
  background: #325549;
  border-color: #325549;
  color: #fff;
}

.exchange-section .more-text{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

.exchange-section .more-text h5 i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 20px;
  color: #325549;
}

.exchange-section .more-text h5{
  font-size: 18px;
  line-height: 26px;
  padding-left: 25px;
}

.exchange-section .more-text h5 a{
  display: inline-block;
  color: #325549;
  text-decoration: underline;
}

.exchange-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}


/** help-section **/

.help-section{
  position: relative;
}

.help-section .tab-btn-box{
  position: relative;
  margin-right: 20px;
}

.help-section .tab-btn-box:before{
  position: absolute;
  content: '';
  background: #e6e9ee;
  width: 1px;
  height: 100%;
  left: 71px;
  top: 0px;
}

.help-section .tab-btn-box .tab-btn{
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  cursor: pointer;
  padding: 19px 0px;
  border-bottom: 1px solid #e5e8ed;
}

.help-section .tab-btn-box .tab-btn:last-child{
  padding-bottom: 0px;
  border-bottom: none;
}

.help-section .tab-btn-box .tab-btn:first-child{
  padding-top: 0px;
}

.help-section .tab-btn-box .tab-btn .icon-box{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #f5f6f8;
  text-align: center;
}

.help-section .tab-btn-box .tab-btn h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 26px;
  color: #a5a4ab;
  transition: all 500ms ease;
}

.help-section .tab-btn-box .tab-btn.active-btn h4{
  color: var(--title-color);
}

.help-section .tab-btn-box .tab-btn:before{
  position: absolute;
  content: '';
  background: #325549;
  width: 16px;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  right: 0px;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 0% 100%, 0% 0%);
  opacity: 0;
  transition: all 500ms ease;
}

.help-section .tab-btn-box .tab-btn.active-btn:before{
  opacity: 1;
}

.help-section .tabs-content{
  position: relative;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
}

.help-section .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.help-section .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.help-section .image-box:hover img{
  transform: scale(1.05);
}

.help-section .content-box{
  position: relative;
  display: block;
  padding: 30px 0px 18px 40px;
}

.help-section .content-box h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  padding-bottom: 24px;
  margin-bottom: 22px;
  max-width: 250px;
}

.help-section .content-box h4:before{
  position: absolute;
  content: '';
  background: #325549;
  width: 70px;
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.help-section .content-box li{
  position: relative;
  display: block;
  padding: 13px 0px;
  border-bottom: 1px solid #e6e9ee;
}

.help-section .content-box li:last-child{
  border-bottom: none;
}

.help-section .content-box li a{
  position: relative;
  display: block;
  font-size: 17px;
  font-family: var(--text-font);
  color: #5b5d5f;
}

.help-section .content-box li a:hover,
.help-section .content-box li a:hover i{
  color: #325549;
}

.help-section .content-box li a i{
  position: absolute;
  top: 4px;
  right: -2px;
  font-size: 20px;
  color: #aeb2b6;
  transition: all 500ms ease;
}


/** apps-section **/

.apps-section{
  position: relative;
  background: #325549;
  overflow: hidden;
}

.apps-section .sec-title .sub-title{
  color: #fff;
}

.apps-section .sec-title .sub-title:before,
.apps-section .sec-title .sub-title:after{
  background: #fff;
}

.apps-section .sec-title p{
  color: #fff;
}

.apps-section .download-btn a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  border: solid;
  border-width: 2px;
  border-color: #fff;
  padding: 12px 30px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #fff;
}

.apps-section .download-btn a:last-child{
  margin-bottom: 0px;
}

.apps-section .download-btn a:hover{
  background: #fff;
  color: #325549;
}

.apps-section .download-btn a i{
  height: 20px;
}

.apps-section .big-text{
  position: absolute;
  left: -15px;
  top: 25px;
  height: 100%;
  text-align: center;
  writing-mode: vertical-lr;
  font-size: 100px;
  line-height: 100px;
  font-family: var(--title-font);
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.10);
  transform: rotate(180deg);
}

.apps-section .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.apps-section .pattern-layer .pattern-2{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 897px;
  height: 584px;
  background-repeat: no-repeat;
}

.apps-section .image-layer{
  position: absolute;
  left: 0px;
  bottom: 0px;
}


/** working-section **/

.working-section{
  position: relative;
  padding: 113px 0px;
}

.working-block-one{
  position: relative;
  padding-bottom: 30px;
}

.working-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  padding: 42px 20px 66px 20px;
  margin-bottom: 35px;
  margin-top: 20px;
  transition: all 500ms ease;
}

.working-block-one .inner-box:hover{
  transform: translateY(-10px);
}

.working-block-one .inner-box .count-text{
  position: absolute;
  left: 50%;
  top: -20px;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #f5f6f8;
  text-align: center;
  border: 1px solid #dbdee2;
  border-radius: 50%;
  font-size: 16px;
  font-family: var(--title-font);
  color: #a8acb1;
  font-weight: 700;
}

.working-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 12px;
}

.working-block-one .inner-box h3 a{
  display: inline-block;
  color: var(--title-color);
}

.working-block-one .inner-box h3 a:hover{
  color: #325549;
}

.working-block-one .inner-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 50%;
  bottom: -35px;
  margin-left: -35px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background: #e9eaec;
  z-index: 1;
}

.working-block-one .inner-box .icon-box:before{
  position: absolute;
  content: '';
  border: 1px solid #dadde1;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  left: -29px;
  bottom: -29px;
  z-index: -1;
  clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%, 0% 0%);
}

.working-section .more-text{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 42px;
}

.working-section .more-text h5 i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 20px;
  color: #325549;
}

.working-section .more-text h5{
  font-size: 18px;
  line-height: 26px;
  padding-left: 25px;
}

.working-section .more-text h5 a{
  display: inline-block;
  color: #325549;
  text-decoration: underline;
}

.news-block-one .inner-box .content-box .lower-box h2{
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 25px;
}

.news-block-one .inner-box .content-box .lower-box h2 a{
  display: inline-block;
  color: var(--title-color);
}

.news-block-one .inner-box .content-box .lower-box h2 a:hover{
  color: #325549;
}

.news-block-one .inner-box .content-box .post-info{
  position: relative;
  display: flex;
  align-items: center;
}

.news-block-one .inner-box .content-box .post-info li{
  position: relative;
  margin-right: 32px;
}

.news-block-one .inner-box .content-box .post-info li:last-child{
  margin: 0px !important;
}

.news-block-one .inner-box .content-box .post-info li:before{
  position: absolute;
  content: ':';
  font-size: 20px;
  top: -2px;
  right: -16px;
  color: #a3a7ac;
}

.news-block-one .inner-box .content-box .post-info li:last-child:before{
  display: none;
}

.news-block-one.style-two .inner-box{
  position: relative;
  padding-left: 200px;
}

.news-block-one.style-two .inner-box .image-box{
  position: absolute;
  left: 0px;
  top: 0px;
}

.news-section .more-link a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  color: var(--title-color);
  font-weight: 700;
  padding-left: 26px;
}

.news-section .more-link a:hover{
  color: #325549;
}

.news-section .more-link a i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 20px;
  color: #325549;
}


/** deals-section **/

.deals-section{
  position: relative;
}

.deals-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  padding: 30px 30px 25px 30px;
  margin-bottom: 30px;
}

.deals-block-one .inner-box .title-box{
  position: relative;
  display: block;
  padding: 0px 0px 0px 76px;
  margin-bottom: 19px;
}

.deals-block-one .inner-box .title-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #f5f6f8;
  text-align: center;
  border-radius: 50%;
}

.deals-block-one .inner-box .title-box span{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #325549;
  border-bottom: 1px solid #e6e9ee;
  margin-bottom: 8px;
}

.deals-block-one .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}

.deals-block-one .inner-box h3 a{
  position: relative;
  display: inline-block;
  color: #325549;
}

.deals-block-one .inner-box h3 a:hover{
  color: #325549;
}

.deals-block-one .inner-box .lower-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.deals-block-one .inner-box .lower-box .link-box a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  color: var(--title-color);
  font-weight: 700;
  padding-left: 26px;
}

.deals-block-one .inner-box .lower-box .link-box a:hover{
  color: #325549;
}

.deals-block-one .inner-box .lower-box .link-box a i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 20px;
  color: #325549;
}

.deals-block-one .inner-box .lower-box .share-box{
  position: relative;
  cursor: pointer;
}

.deals-block-one .inner-box .lower-box .share-box .share-text{
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.deals-block-one .inner-box .lower-box .share-box .share-text span{
  position: relative;
  display: inline-block;
}

.deals-block-one .inner-box .lower-box .share-box .social-links{
  position: absolute;
  display: flex;
  align-items: center;
  top: 0px;
  right: 0px;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}

.deals-block-one .inner-box .lower-box .share-box:hover .social-links{
  top: -22px;
  opacity: 1;
  visibility: visible;
}

.deals-block-one .inner-box .lower-box .share-box .social-links li{
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.deals-block-one .inner-box .lower-box .share-box .social-links li:last-child{
  margin: 0px !important;
}

.deals-block-one .inner-box .lower-box .share-box .social-links li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--text-color);
}

.deals-block-one .inner-box .lower-box .share-box .social-links li a:hover{
  color: #325549;
}

.deals-section .newsletter-inner{
  position: relative;
  display: block;
  background: #325549;
  padding: 31px 40px 30px 240px;
  margin-bottom: 30px;
}

.deals-section .newsletter-inner .icon-box{
  position: absolute;
  display: inline-block;
  left: 40px;
  top: 40px;
  width: 160px;
  height: 160px;
  line-height: 160px;
  background: #1b1927;
  text-align: center;
  border-radius: 50%;
}

.deals-section .newsletter-inner h3{
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 2px;
}

.deals-section .newsletter-inner p{
  color: #c8ddf8;
  margin-bottom: 23px;
}

.deals-section .newsletter-inner .form-group{
  position: relative;
  padding-right: 165px;
  margin-bottom: 14px;
}

.deals-section .newsletter-inner .form-group .icon{
  position: absolute;
  left: 20px;
  top: 15px;
  z-index: 1;
}

.deals-section .newsletter-inner .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  background: #fff;
  font-size: 17px;
  color: #5b5d5f;
  padding: 10px 20px 10px 50px;
}

.deals-section .newsletter-inner .form-group button[type='submit']{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 165px;
  background: #f5f6f8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 30px;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
}

.deals-section .newsletter-inner .form-group button i{
  position: relative;
  display: inline-block;
  font-size: 22px;
  height: 22px;
  color: #325549;
}

.deals-section .newsletter-inner .lower-text{
  position: relative;
  display: block;
  padding-left: 22px;
  font-size: 17px;
  color: #c9ddf8;
}

.deals-section .newsletter-inner .lower-text img{
  position: absolute;
  left: 0px;
  top: 5px;
}

.deals-section .newsletter-inner .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


/** awards-section **/

.awards-section{
  position: relative;
  display: block;
}

.awards-section .title-inner{
  position: relative;
  display: block;
}

.awards-section .title-inner .image-list{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.awards-section .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.awards-section .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  visibility: hidden;
}

.awards-section .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
  visibility: visible;
}

.award-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #e6e9ee;
  box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.06);
  padding: 34px 30px 33px 30px;
  overflow: hidden;
}

.award-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 38px;
}

.award-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  border-radius: 50%;
  background: #1e242a;
  margin-bottom: 36px;
  box-shadow: 0px 0px 0px 15px rgba(2, 109, 252, 0.05);
}

.award-block-one .inner-box .icon-box img{
  position: relative;
  display: inline-block;
}

.award-block-one .inner-box p{
  color: var(--title-color);
  margin-bottom: 14px;
}

.award-block-one .inner-box span{
  position: relative;
  display: block;
  color: #5b5d5f;
}

.award-block-one .inner-box .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.awards-section .owl-nav{
  position: absolute;
  left: -86px;
  top: 50%;
  transform: translateY(-50%);
}

.awards-section .owl-nav button{
  display: block;
}

.awards-section .nav-style-one .owl-nav button.owl-prev{
  margin-right: 0px;
  margin-bottom: 20px;
}

.awards-section .nav-style-one .owl-nav button:before{
  position: absolute;
  content: '';
  background: #e6e9ee;
  width: 1px;
  height: 120px;
  left: 28px;
}

.awards-section .nav-style-one .owl-nav button.owl-prev:before{
  bottom: 76px;
}

.awards-section .nav-style-one .owl-nav button.owl-next:before{
  top: 76px;
}


/** clients-section **/

.clients-section{
  position: relative;
}

.clients-section .inner-container{
  position: relative;
  padding: 0px 120px;
}

.clients-section .owl-carousel .owl-stage{
  display: flex;
  align-items: center;
}

.clients-section .clients-logo{
  position: relative;
  display: block;
}

.clients-section .clients-logo:before{
  position: absolute;
  content: '';
  background: #e6e9ee;
  width: 1px;
  height: 100%;
  top: 0px;
  right: -50px;
}

.clients-section .clients-logo img{
  position: relative;
  display: block;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
  filter: grayscale(100%);
  transition: all 500ms ease;
}

.clients-section .clients-logo img:hover{
  filter: grayscale(0%);
}

.clients-section .owl-dots{
  position: relative;
  display: inline-block;
  margin-top: 50px;
}

.clients-section .dots-style-one .owl-dots:before,
.clients-section .dots-style-one .owl-dots:after{
  position: absolute;
  content: '';
  background: #e6e9ee;
  width: 130px;
  height: 1px;
  top: 13px;
}

.clients-section .dots-style-one .owl-dots:before{
  left: -135px;
}

.clients-section .dots-style-one .owl-dots:after{
  right: -133px;
}


/** testimonial-section **/

.testimonial-section{
  position: relative;
}

.testimonial-section .inner-container{
  position: relative;
  display: block;
  background: #f5f6f8;
  padding-right: 137px;
  padding-left: 137px;
  margin-bottom: 20px;
}

.testimonial-section .testimonial-content{
  position: relative;
  display: block;
  padding: 44px 36px 50px 128px;
  border-left: 1px solid #dadde1;
  border-right: 1px solid #dadde1;
}

.testimonial-section .testimonial-content .icon-box{
  position: absolute;
  display: inline-block;
  left: 40px;
  top: 50px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #e9eaec;
  text-align: center;
  border-radius: 50%;
}

.testimonial-section .testimonial-content .icon-box img{
  display: inline-block;
}

.testimonial-section .testimonial-content p{
  max-width: 610px;
  margin-bottom: 24px;
}

.testimonial-section .testimonial-content .author-inner{
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.testimonial-section .testimonial-content .author-box{
  position: relative;
  display: block;
  padding: 3px 0px 3px 80px;
}

.testimonial-section .testimonial-content .author-box .thumb-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.testimonial-section .testimonial-content .author-box .thumb-box img{
  width: 100%;
  border-radius: 50%;
}

.testimonial-section .testimonial-content .author-box h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
}

.testimonial-section .testimonial-content .author-box .designation{
  position: relative;
  display: block;
}

.testimonial-section .testimonial-content .author-inner .thumb-list{
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-section .testimonial-content .author-inner .thumb-list li{
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -10px;
}

.testimonial-section .testimonial-content .author-inner .thumb-list li img{
  width: 100%;
  border-radius: 50%;
}

.testimonial-section .owl-nav{
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -28px;
  width: 100%;
}

.testimonial-section .owl-nav .owl-prev{
  position: absolute;
  left: -97px;
}

.testimonial-section .owl-nav .owl-next{
  position: absolute;
  right: -97px;
}

.testimonial-section:before{
  position: absolute;
  content: '';
  background: #e6e9ee;
  width: 100%;
  height: 1px;
  left: 0px;
  top: 226px;
}

.testimonial-section .customer-review{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6e9ee;
  padding: 14px 30px;
}

.testimonial-section .customer-review .review-text{
  position: relative;
  display: block;
  padding: 7px 20px 7px 50px;
}

.testimonial-section .customer-review .review-text .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  width: 40px;
  height: 40px;
  line-height: 36px;
  border: 1px solid #e9ebf0;
  border-radius: 50%;
  text-align: center;
}

.testimonial-section .customer-review .review-text:before{
  position: absolute;
  content: '';
  background: #e6e9ee;
  width: 1px;
  height: 30px;
  top: 5px;
  right: 0px;
}

.testimonial-section .customer-review .rating-box{
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-section .customer-review .rating-box h2{
  font-size: 36px;
  line-height: 40px;
  margin-right: 15px;
}

.testimonial-section .customer-review .rating-box .rating-list{
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-section .customer-review .rating-box .rating-list li{
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #325549;
  margin-right: 5px;
}

.testimonial-section .customer-review .rating-box .rating-list li:last-child{
  margin: 0px !important;
}

.testimonial-section .big-text{
  position: absolute;
  right: 170px;
  bottom: -10px;
  font-size: 70px;
  line-height: 70px;
  font-family: var(--title-font);
  color: #ebedf1;
  font-weight: 800;
  text-transform: uppercase;
}


/** footer-style-two **/

.footer-style-two{
  position: relative;
  background: #1b1927;
}

/*** chat popup ***/

.chat-popup {
  position: fixed;
  right: -100%;
  bottom: 0px;
  width: 350px;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  transition: all 0.5s ease-in-out 0.1s;
}

.chat-popup.popup-visible {
  right: 0px;
  visibility: visible;
  opacity: 1;
}

.chat-popup .popup-inner{
  position: relative;
  display: block;
  padding: 40px 30px;
  padding-top: 32px;
}

.chat-popup .close-chat{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: -65px;
  width: 50px;
  height: 50px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
  background: #325549;
}

.chat-popup .popup-inner p{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 40px;
}

.chat-popup .chat-form .form-group{
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.chat-popup .chat-form .form-group:last-child{
  margin-bottom: 0px;
}

.chat-popup .chat-form .form-group input[type='text'],
.chat-popup .chat-form .form-group input[type='email'],
.chat-popup .chat-form .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  border: 1px solid #e5e5e5;
  font-size: 13px;
  color: var(--text-color);
  padding: 10px 20px;
  transition: all 500ms ease;
}

.chat-popup .chat-form .form-group textarea{
  height: 120px;
  resize: none;
}

.chat-popup .chat-form .form-group input:focus,
.chat-popup .chat-form .form-group textarea:focus{
  border-color: #325549;
}

.chat-popup .chat-form .form-group .theme-btn{
  width: 100%;
}

.footer-style-two .footer-top{
  position: relative;
  background: #292937;
}

.footer-style-two .footer-top .top-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-style-two .footer-top .option-list{
  position: relative;
  display: flex;
  align-items: center;
}

.footer-style-two .widget-section{
  padding: 93px 0px 153px 0px;
}

.footer-style-two .footer-top .option-list li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 40px;
  margin-right: 40px;
}

.footer-style-two .footer-top .option-list li:last-child{
  padding: 0px !important;
  margin: 0px !important;
}

.footer-style-two .footer-top .option-list li a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 700;
}

.footer-style-two .footer-top .option-list li a:hover{
  color: #325549;
}

.footer-style-two .footer-top .option-list li:before{
  position: absolute;
  content: '';
  background: #3a3a3e;
  width: 1px;
  height: 40px;
  top: -7px;
  right: 0px;
}

.footer-style-two .footer-top .option-list li:last-child:before{
  display: none;
}

.footer-style-two .footer-top .support-box{
  position: relative;
  display: inline-block;
  cursor: pointer;
  background: #333341;
  padding: 22px 162px 22px 92px;
}

.footer-style-two .footer-top .support-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
}

.footer-style-two .footer-top .support-box h5{
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}

.footer-style-two .footer-top .support-box .image-box{
  position: absolute;
  right: 20px;
  bottom: 0px;
}

.footer-style-two .footer-widget .widget-title{
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.footer-style-two .footer-widget .widget-title h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
}

.footer-style-two .links-widget .links-list li{
  position: relative;
  display: block;
  margin-bottom: 13px;
}

.footer-style-two .links-widget .links-list li a{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 26px;
  font-family: var(--text-font);
  color: #a3a1ad;
  padding-right: 20px;
}

.footer-style-two .links-widget .links-list li a:hover{
  color: #fff;
}

.footer-style-two .links-widget .links-list li a i{
  position: absolute;
  top: 3px;
  right: 0px;
  font-size: 18px;
  color: #325549;
  opacity: 0;
  transition: all 500ms ease;
}

.footer-style-two .links-widget .links-list li a:hover i{
  opacity: 1;
}

.footer-style-two .links-widget{
  position: relative;
}

.footer-style-two .links-widget:before{
  position: absolute;
  content: '';
  background: #353543;
  width: 1px;
  height: calc(100% - 7px);
  top: 7px;
  right: 35px;
}

.footer-style-two .contact-widget .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
}

.footer-style-two .contact-widget .tab-btns .tab-btn{
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-left: 26px;
  margin-right: 20px;
  font-size: 17px;
  line-height: 26px;
  color: #a3a1ad;
}

.footer-style-two .contact-widget .tab-btns .tab-btn:last-child{
  margin: 0px !important;
}

.footer-style-two .contact-widget .tab-btns .tab-btn:before{
  position: absolute;
  content: '';
  background: #292937;
  border: 1px solid #323042;
  width: 16px;
  height: 16px;
  left: 0px;
  top: 5px;
}

.footer-style-two .contact-widget .tab-btns .tab-btn:after{
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  left: 5px;
  top: 10px;
  background: #325549;
  opacity: 0;
  transition: all 500ms ease;
}

.footer-style-two .contact-widget .tab-btns .tab-btn.active-btn:after{
  opacity: 1;
}

.footer-style-two .contact-widget .inner-box .form-group{
  position: relative;
  margin-bottom: 22px;
}

.footer-style-two .contact-widget .inner-box .form-group .icon-box{
  position: absolute;
  top: 12px;
  right: 20px;
  z-index: 1;
}

.footer-style-two .contact-widget .inner-box .form-group input[type='text']{
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  background: transparent;
  border: 1px solid #353543;
  font-size: 17px;
  color: #fff;
  padding: 10px 50px 10px 20px;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
  transition: all 500ms ease;
}

.footer-style-two .contact-widget .inner-box .form-group input:focus{
  border-color: #325549;
}

.footer-style-two .contact-widget .inner-box p{
  color: #a3a1ad;
  margin-bottom: 12px;
}

.footer-style-two .contact-widget .inner-box .link-box a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #fff;
  padding-left: 26px;
}

.footer-style-two .contact-widget .inner-box .link-box a:hover{
  color: #325549;
}

.footer-style-two .contact-widget .inner-box .link-box a i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 20px;
  color: #325549;
}

.footer-style-two .footer-bottom{
  position: relative;
  width: 100%;
  background: #325549;
}

.footer-style-two .footer-bottom .contact-info-box{
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: -60px;
}

.footer-style-two .footer-bottom .contact-info-box .tab-btns{
  position: relative;
  display: block;
  background: #1b1927;
  border: 1px solid #353543;
}

.footer-style-two .footer-bottom .contact-info-box .tab-btns .tab-btn{
  position: relative;
  float: left;
  width: 50%;
  text-align: center;
  border-right: 1px solid #353543;
  padding: 13px 20px;
  cursor: pointer;
  transition: all 500ms ease;
}

.footer-style-two .footer-bottom .contact-info-box .tab-btns .tab-btn:last-child{
  border-right: none;
}

.footer-style-two .footer-bottom .contact-info-box .tab-btns .tab-btn h3{
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  transition: all 500ms ease;
}

.footer-style-two .footer-bottom .contact-info-box .tab-btns .tab-btn.active-btn h3{
  padding-right: 26px;
  color: #325549;
}

.footer-style-two .footer-bottom .contact-info-box .tab-btns .tab-btn h3:before{
  position: absolute;
  content: '';
  background: #325549;
  width: 16px;
  height: 12px;
  top: 10px;
  right: 0px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
  opacity: 0;
  transition: all 500ms ease;
}

.footer-style-two .footer-bottom .contact-info-box .tab-btns .tab-btn.active-btn h3:before{
  opacity: 1;
}

.footer-style-two .footer-bottom .contact-info-box .tabs-content{
  background: #292937;
}

.footer-style-two .footer-bottom .contact-info-box .tabs-content .inner-box{
  position: relative;
  padding: 21px 220px 22px 40px;
}

.footer-style-two .footer-bottom .contact-info-box .tabs-content .info-list{
  position: relative;
  display: flex;
  align-items: center;
}

.footer-style-two .footer-bottom .contact-info-box .tabs-content .info-list li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  padding-right: 30px;
  margin-right: 30px;
}

.footer-style-two .footer-bottom .contact-info-box .tabs-content .info-list li a{
  position: relative;
  display: inline-block;
  font-size: 17px;
  color: #a3a1ad;
  font-family: var(--text-font);
}

.footer-style-two .footer-bottom .contact-info-box .tabs-content .info-list li a:hover{
  color: #325549;
}

.footer-style-two .footer-bottom .contact-info-box .tabs-content .info-list li a span{
  color: #55535e;
}

.footer-style-two .footer-bottom .contact-info-box .tabs-content .inner-box .btn-box{
  position: absolute;
  top: 0px;
  right: 0px;
}

.footer-style-two .footer-bottom .contact-info-box .tabs-content .info-list li:last-child{
  padding: 0px !important;
  margin-bottom: 0px !important;
}

.footer-style-two .footer-bottom .contact-info-box .tabs-content .info-list li:before{
  position: absolute;
  content: '';
  background: #454552;
  width: 1px;
  height: 30px;
  top: -2px;
  right: 0px;
}

.footer-style-two .footer-bottom .contact-info-box .tabs-content .info-list li:last-child:before{
  display: none;
}

.footer-style-two .footer-bottom .contact-info-box .tabs-content .inner-box .btn-box a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  font-weight: 700;
  background: #333341;
  padding: 22px 40px;
}

.footer-style-two .footer-bottom .contact-info-box .tabs-content .inner-box .btn-box a:hover{
  color: #325549;
}

.footer-style-two .footer-bottom .bottom-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 0px;
}

.footer-style-two .footer-bottom .bottom-inner .copyright p{
  color: #fff;
}

.footer-style-two .footer-bottom .bottom-inner .copyright p a{
  display: inline-block;
  color: #fff;
}

.footer-style-two .footer-bottom .bottom-inner .copyright p a:hover{
  text-decoration: underline;
}

.footer-style-two .footer-bottom .bottom-inner .footer-nav{
  position: relative;
  display: flex;
  align-items: center;
}

.footer-style-two .footer-bottom .bottom-inner .footer-nav li{
  position: relative;
  margin-right: 25px;
}

.footer-style-two .footer-bottom .bottom-inner .footer-nav li:last-child{
  margin: 0px !important;
}

.footer-style-two .footer-bottom .bottom-inner .footer-nav li a{
  position: relative;
  display: inline-block;
  color: #fff;
}

.footer-style-two .footer-bottom .bottom-inner .footer-nav li a:hover{
  text-decoration: underline;
}


/** header-style-three **/

.header-style-three .outer-container{
  position: relative;
  padding: 0px 205px;
}

.header-style-three .outer-container .logo-box:before{
  position: absolute;
  content: '';
  background: #e9e9e9;
  width: 1px;
  height: 100%;
  top: 0px;
  right: 0px;
}

.header-style-three .header-lower .main-menu .navigation > li > a{
  padding-top: 36px;
  padding-bottom: 36px;
  line-height: 28px;
}

.header-style-three .header-lower .main-menu .navigation > li.dropdown > a:before{
  top: 36px;
}

.header-style-three .menu-right-content .notification-box button{
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: all 500ms ease;
}

.header-style-three .menu-right-content .notification-box button img{
  position: relative;
  display: inline-block;
  filter: grayscale(100%);
  transition: all 500ms ease;
}

.header-style-three .menu-right-content .notification-box button:hover img,
.header-style-three .menu-right-content .notification-box button:focus img,
.header-style-three .menu-right-content .notification-box button:active img{
  filter: grayscale(0%);
}

.header-style-three .menu-right-content .btn-box a{
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: var(--title-color);
  gap: 10px;
  border: solid;
  border-width: 1px;
  border-color: #1b1927;
  padding: 11px 29px;
}


/** banner-style-three **/

.banner-style-three{
  position: relative;
  padding: 0px 205px 120px 205px;
}

.banner-style-three .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.banner-style-three .inner-container{
  position: relative;
  padding-right: 370px;
}

.banner-style-three .inner-box .content-box,
.banner-style-three .inner-box .image-box{
  position: relative;
  float: left;
  width: 50%;
}

.banner-style-three .inner-box .image-box .image{
  position: relative;
  display: block;
}

.banner-style-three .inner-box .image-box .image img{
  width: 100%;
}

.banner-style-three .content-box{
  position: relative;
  display: block;
  padding: 50px 50px;
}

.banner-style-three .content-box .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-style-three .content-box .light-icon{
  position: absolute;
  top: 50px;
  right: 160px;
}

.banner-style-three .content-box .doller-box{
  position: relative;
  display: inline-block;
  margin-bottom: 31px;
}

.banner-style-three .content-box .rotate-box{
  position: absolute;
  top: 50px;
  right: 50px;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
}

.banner-style-three .content-box .rotate-box:before{
  position: absolute;
  content: '';
  background-image: url(../images/shape/shape-13.png);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}

.banner-style-three .content-box .rotate-box .curved-circle{
  position: absolute;
  left: 80px;
  top: 3px;
  font-size: 14px;
  line-height: 20px;
  font-family: var(--title-font);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

.banner-style-three .content-box .rotate-box .text span{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 20px;
  color: var(--title-color);
}

.banner-style-three .content-box .rotate-box .text h3{
  display: block;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 0px;
}

.banner-style-three .content-box .rotate-box .text h6{
  display: block;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
}

.banner-style-three .content-box .sec-title h2{
  font-size: 58px;
  line-height: 68px;
}

.banner-style-three .content-box .sec-title h2 span{
  position: relative;
  display: inline-block;
  font-weight: 300;
}

.banner-style-three .content-box .sec-title h2 span:before{
  position: absolute;
  content: '';
  background: #c2c2c2;
  width: 100%;
  height: 10px;
  left: 0px;
  bottom: 4px;
}

.banner-style-three .content-box .sec-title{
  margin-bottom: 27px;
}

.banner-style-three .content-box p{
  margin-bottom: 26px;
}

.banner-style-three .content-box .btn-box{
  position: relative;
  display: block;
  border-bottom: 2px solid #141414;
  padding-bottom: 10px;
  margin-bottom: 35px;
}

.banner-style-three .content-box .btn-box a{
  position: relative;
  display: inline-block;
  gap: 10px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: var(--title-color);
  padding-left: 26px;
}

.banner-style-three .content-box .btn-box a i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 20px;
}

.banner-style-three .content-box .appointment-box{
  position: relative;
  padding: 0px 30px 0px 60px;
}

.banner-style-three .content-box .appointment-box .icon-box{
  position: absolute;
  left: 0px;
  top: 4px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #bfbfbf;
  border-radius: 50%;
  text-align: center;
}

.banner-style-three .content-box .appointment-box h5{
  display: block;
  font-size: 18px;
  line-height: 26px;
}

.banner-style-three .content-box .appointment-box p{
  margin-bottom: 0px;
}

.banner-style-three .content-box .appointment-box .link{
  position: absolute;
  top: 14px;
  right: 0px;
}

.banner-style-three .content-box .appointment-box .link a{
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--title-color);
}

.banner-style-three .content-box:before{
  position: absolute;
  content: '';
  width: 60px;
  height: 40px;
  background: #fff;
  top: 0px;
  right: -30px;
  z-index: 1;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
}

.banner-style-three .content-box:after{
  position: absolute;
  content: '';
  width: 60px;
  height: 40px;
  background: #fff;
  bottom: 0px;
  right: -30px;
  z-index: 1;
  clip-path: polygon(0% 0%, 50% 0%, 100% 100%, 0% 100%, 50% 0%);
}

.banner-style-three .form-inner{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 370px;
  padding: 43px 40px 45px 40px;
}

.banner-style-three .form-inner:before{
  position: absolute;
  content: '';
  width: 60px;
  height: 40px;
  background: #fff;
  top: 0px;
  left: -30px;
  z-index: 1;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
}

.banner-style-three .form-inner:after{
  position: absolute;
  content: '';
  width: 60px;
  height: 40px;
  background: #fff;
  bottom: 0px;
  left: -30px;
  z-index: 1;
  clip-path: polygon(0% 0%, 50% 0%, 100% 100%, 0% 100%, 50% 0%);
}

.banner-style-three .form-inner .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-style-three .form-inner h3{
  display: block;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 23.5px;
}

.banner-style-three .form-inner .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d1d1d1;
}

.banner-style-three .form-inner .tab-btns .tab-btn{
  position: relative;
  display: inline-block;
  margin-right: 25px;
  padding-bottom: 10px;
  cursor: pointer;
}

.banner-style-three .form-inner .tab-btns .tab-btn:last-child{
  margin: 0px !important;
}

.banner-style-three .form-inner .tab-btns .tab-btn:before{
  position: absolute;
  content: '';
  background: #325549;
  width: 0%;
  height: 1px;
  left: 0px;
  bottom: -1px;
  transition: all 500ms ease;
}

.banner-style-three .form-inner .tab-btns .tab-btn.active-btn:before{
  width: 100%;
}

.banner-style-three .form-inner .tab-btns .tab-btn h5{
  font-size: 18px;
  line-height: 26px;
  opacity: 0.30;
  transition: all 500ms ease;
}

.banner-style-three .form-inner .tab-btns .tab-btn.active-btn h5{
  opacity: 1;
}

.banner-style-three .form-inner .form-group{
  position: relative;
  margin-bottom: 10px;
}

.banner-style-three .form-inner .form-group input[type='text'],
.banner-style-three .form-inner .form-group input[type='password']{
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  background: #fff;
  border: 1px solid #fff;
  font-size: 17px;
  color: #595858;
  padding: 10px 45px 10px 20px;
  transition: all 500ms ease;
}

.banner-style-three .form-inner .form-group .icon-box{
  position: absolute;
  top: 14px;
  right: 20px;
  z-index: 1;
}

.banner-style-three .form-inner .form-group input:focus{
  border-color: #325549;
}

.banner-style-three .form-inner .text-box{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  color: var(--title-color);
}

.banner-style-three .form-inner .theme-btn{
  width: 100%;
}

.banner-style-three .form-inner .forgot-password button{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 18px;
  color: var(--title-color);
  border-bottom: 1px solid #325549;
}

.banner-style-three .form-inner .text p a{
  display: inline-block;
  color: var(--text-color);
}

.banner-style-three .form-inner .text p a:hover{
  text-decoration: underline;
  color: var(--title-color);
}

.sec-title .sub-title.light{
  opacity: 0.4;
}

.custom-banking-two.alternat-2 .banking-block-one .inner-box .image-box .icon-box{
  background: #e8e8e8;
}

.custom-banking-two.alternat-2 .banking-block-one .inner-box .image-box .btn-box .theme-btn{
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
}

.custom-banking-two.alternat-2 .banking-block-one .inner-box .image-box .btn-box .theme-btn:hover span:before{
  color: #fff;
}

.custom-banking-two.alternat-2 .banking-block-one .inner-box:hover .text-box{
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
}

.custom-banking-two.alternat-2 .more-text h5{
  color: #595858;
}

.custom-banking.alternat-2 .sec-title .sub-title{
  color: #a19e9e;
}

.custom-banking.alternat-2 .sec-title .sub-title:before,
.custom-banking.alternat-2 .sec-title .sub-title:after{
  background: #a19e9e;
}

.custom-banking.alternat-2 .tabs-box .tab-btn-one .tab-btns li{
  background: #e4e4e4;
}

.custom-banking.alternat-2 .tabs-box .tab-btn-one .tab-btns li.active-btn{
  background: #f4f4f4;
  color: var(--title-color);
}

.custom-banking .content-box .inner-box .form-inner:before{
  position: absolute;
  content: '';
  background-image: url(../images/shape/shape-18.png);
  width: 100%;
  height: 193px;
  left: 0px;
  bottom: 0px;
  background-size: cover;
  background-repeat: no-repeat;
}


.calculator-section.alternat-2 .content-box .left-content .lower-text h5{
  color: #a19e9e;
}

.calculator-section.alternat-2 .progress-block-one .inner-box .bar-inner:before{
  opacity: 0.4;
}

.calculator-section.alternat-2 .amount-box .emi-box{
  background: transparent;
}

.calculator-section.alternat-2 .amount-box .emi-box:before{
  position: absolute;
  content: '';
  background-image: url(../images/shape/shape-19.png);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.calculator-section.alternat-2 .amount-box .emi-box h5{
  color: #545151;
}

.calculator-section.alternat-2 .amount-box .emi-box h3{
  color: var(--title-color);
}

.calculator-section.alternat-2 .amount-box .emi-box .btn-box .theme-btn{
  background: #325549;
  color: #fff !important;
}

.calculator-section.alternat-2 .amount-box .emi-box .btn-box .theme-btn:before{
  background: #fff;
}

.calculator-section.alternat-2 .amount-box .emi-box .btn-box .theme-btn:hover,
.calculator-section.alternat-2 .amount-box .emi-box .btn-box .theme-btn:hover span:before{
  color: var(--title-color) !important;
}

.calculator-section.alternat-2 .amount-box .emi-box .btn-box .theme-btn span:before{
  color: #fff;
}

.calculator-section.alternat-2 .amount-box .interest-amount .single-amount .icon-box{
  opacity: 0.4;
}

.bg-color-4{
  background: #f4f4f4;
}

.working-section .more-text.light h5{
  color: #595858;
}

.creditcard-section.alternat-2 .sec-title .sub-title{
  color: #565555;
}

.creditcard-section.alternat-2 .sec-title .sub-title:before,
.creditcard-section.alternat-2 .sec-title .sub-title:after{
  background: #565555;
}

.creditcard-section.alternat-2 .content-box .tab-btns .tab-btn.active-btn{
  background: #292929;
  border-color: #292929;
}

.creditcard-section.alternat-2 .content-box .tab-btns .tab-btn{
  background: #141414;
  border: 1px solid #2c2c2c;
  padding-top: 11px;
  padding-bottom: 11px;
}

.creditcard-section.alternat-2 .content-box .inner-box .text-box a,
.creditcard-section.alternat-2 .content-box .inner-box .text-box a i{
  color: #fff;
}


/** testimonial-style-two **/

.testimonial-style-two{
  position: relative;
}

.testimonial-style-two .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.testimonial-style-two .owl-carousel .owl-stage-outer .owl-item{
  opacity: 0;
  visibility: hidden;
}

.testimonial-style-two .owl-carousel .owl-stage-outer .owl-item.active{
  opacity: 1;
  visibility: visible;
}

.testimonial-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 30px;
  padding: 40px 30px 40px 40px;
}

.testimonial-block-one .inner-box .rating{
  position: absolute;
  top: 40px;
  right: 0px;
  background: #f4f4f4;
  font-size: 17px;
  line-height: 26px;
  color: var(--title-color);
  padding: 5px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.testimonial-block-one .inner-box .rating i{
  position: relative;
  display: inline-block;
  color: #fcc22d;
  font-size: 16px;
  height: 24px;
}

.testimonial-block-one .inner-box .rating:before{
  position: absolute;
  content: '';
  background: #f4f4f4;
  width: 18px;
  height: 18px;
  left: -18px;
  top: 0px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 0%);
}

.testimonial-block-one .inner-box .rating:after{
  position: absolute;
  content: '';
  background: #f4f4f4;
  width: 18px;
  height: 18px;
  left: -18px;
  bottom: 0px;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.testimonial-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  margin-bottom: 31px;
}

.testimonial-block-one .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}

.testimonial-block-one .inner-box p{
  margin-bottom: 24px;
}

.testimonial-block-one .inner-box .author-box{
  position: relative;
  display: block;
  padding: 0px 0px 0px 100px;
}

.testimonial-block-one .inner-box .author-box .thumb-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 4px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.testimonial-block-one .inner-box .author-box .thumb-box img{
  width: 100%;
  border-radius: 50%;
}

.testimonial-block-one .inner-box .author-box h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 8px;
}

.testimonial-block-one .inner-box .author-box .designation{
  position: relative;
  display: block;
  max-width: 200px;
}

.testimonial-style-two .big-text{
  position: absolute;
  left: 0px;
  top: -95px;
  width: 100%;
  text-align: center;
  font-size: 150px;
  line-height: 110px;
  font-family: var(--title-font);
  font-weight: 800;
  text-transform: uppercase;
  color: transparent;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(-90deg, #f4f4f4, #fff 100%);
}


.deals-section.alternat-2 .newsletter-inner .icon-box{
  background: #e5e5e5;
}

.deals-section.alternat-2 .newsletter-inner p,
.deals-section.alternat-2 .newsletter-inner .lower-text{
  color: #a19e9e;
}

.deals-section.alternat-2 .newsletter-inner .form-group button[type='submit']{
  background: #f4f4f4;
}


/** footer-style-three **/

.footer-style-three{
  position: relative;
  background: #fff;
}

.footer-style-three .footer-top{
  position: relative;
  padding: 30px 0px;
  border-bottom: 1px solid #e9e9e9;
}

.footer-style-three .footer-top .left-column{
  position: relative;
  display: flex;
  align-items: center;
}

.footer-style-three .footer-top .footer-logo:before{
  position: absolute;
  content: '';
  background: #e9e9e9;
  width: 1px;
  height: 100%;
  top: 0px;
  right: 0px;
}

.footer-style-three .footer-top .social-links{
  position: relative;
  display: flex;
  align-items: center;
}

.footer-style-three .footer-top .social-links li{
  position: relative;
  display: inline-block;
  margin-right: 55px;
}

.footer-style-three .footer-top .social-links li:before{
  position: absolute;
  content: '';
  background: #c2c2c2;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 11px;
  right: -26px;
}

.footer-style-three .footer-top .social-links li:last-child:before{
  display: none;
}

.footer-style-three .footer-top .social-links li:last-child{
  margin: 0px !important;
}

.footer-style-three .footer-top .social-links li a{
  position: relative;
  display: flex;
  align-items: center;
  font-size: 17px;
  line-height: 26px;
  font-family: var(--text-font);
  color: var(--text-color);
  gap: 10px;
}

.footer-style-three .footer-top .social-links li a i{
  height: 20px;
  color: var(--title-color);
}

.footer-style-three .footer-top .top-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-style-three .language-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 40px;
}

.footer-style-three .language-box .nice-select .list{
  width: 140px;
}

.footer-style-three .language-box:before{
  position: absolute;
  content: '';
  background: #e9e9e9;
  width: 1px;
  height: 36px;
  left: 0px;
  top: -5px;
}

.footer-style-three .widget-section{
  position: relative;
  padding: 100px 0px 100px 0px;
}

.footer-style-three .widget-section .support-widget .icon-box{
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 21px;
}

.footer-style-three .widget-section .support-widget h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 10px;
}

.footer-style-three .widget-section .support-widget p{
  margin-bottom: 26px;
}

.footer-style-three .widget-section .support-widget .widget-content a{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  font-size: 18px;
  line-height: 26px;
  color: var(--title-color);
  gap: 10px;
  padding: 15px 18px;
}

.footer-style-three .widget-section .support-widget .widget-content a i{
  position: relative;
  display: inline-block;
  font-size: 20px;
  height: 20px;
  color: #a7a4a4;
  transition: all 500ms ease;
}

.footer-style-three .widget-section .support-widget .widget-content a:hover{
  color: #fff;
  background: #325549;
}

.footer-style-three .widget-section .support-widget .widget-content a:hover i{
  color: #fff;
}

.footer-style-three .widget-title{
  position: relative;
  display: block;
  margin-bottom: 21px;
}

.footer-style-three .widget-title h3{
  font-size: 24px;
  line-height: 32px;
}

.footer-style-three .links-widget .links-list li{
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.footer-style-three .links-widget .links-list li:last-child{
  margin-bottom: 0px;
}

.footer-style-three .links-widget .links-list li a{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 26px;
  font-family: var(--text-font);
  color: var(--text-color);
  padding-left: 24px;
}

.footer-style-three .links-widget .links-list li a i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 18px;
  color: #a19e9e;
  transition: all 500ms ease;
}

.footer-style-three .links-widget .links-list li a:hover,
.footer-style-three .links-widget .links-list li a:hover i{
  color: var(--title-color);
}

.footer-style-three .post-widget .post{
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.footer-style-three .post-widget .post:last-child{
  margin-bottom: 0px;
}

.footer-style-three .post-widget .post h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 8px;
}

.footer-style-three .post-widget .post h4 a{
  display: inline-block;
  color: var(--title-color);
}

.footer-style-three .post-widget .post h4 a:hover{
  text-decoration: underline;
}

.footer-style-three .post-widget h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  padding-left: 25px;
  color: #a19e9e;
}

.footer-style-three .post-widget h5 img{
  position: absolute;
  left: 0px;
  top: 5px;
}

.footer-style-three .footer-widget{
  position: relative;
}

.footer-style-three .footer-widget:before{
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  top: 0px;
  right: 35px;
  background: #e9e9e9;
}

.footer-style-three .footer-column:last-child .footer-widget:before{
  display: none;
}

.footer-style-three .widget-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


.footer-style-three .footer-bottom{
  background: #141414;
  padding: 22px 0px;
}

.footer-style-three .footer-bottom .bottom-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-style-three .footer-bottom .bottom-inner .copyright p{
  color: #a19e9e;
}

.footer-style-three .footer-bottom .bottom-inner .copyright p a{
  display: inline-block;
  color: #fff;
}

.footer-style-three .footer-bottom .bottom-inner .copyright p a:hover{
  text-decoration: underline;
}

.footer-style-three .footer-bottom .bottom-inner .footer-nav{
  position: relative;
  display: flex;
  align-items: center;
}

.footer-style-three .footer-bottom .bottom-inner .footer-nav li{
  position: relative;
  margin-right: 25px;
}

.footer-style-three .footer-bottom .bottom-inner .footer-nav li:last-child{
  margin: 0px !important;
}

.footer-style-three .footer-bottom .bottom-inner .footer-nav li a{
  position: relative;
  display: inline-block;
  color: #fff;
}

.footer-style-three .footer-bottom .bottom-inner .footer-nav li a:hover{
  text-decoration: underline;
}


.check-box input {
  display: none;
}

.check-box label {
  position: relative;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: #a8aca5;
  padding-left: 28px;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 0px;
  font-weight: 700;
}

.check-box input:checked + label{
  color: var(--title-color);
}

.check-box label:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
  border-color: #e6ebea;
  background: transparent;
}

.check-box label:after {
  position: absolute;
  content: '';
  left: 6px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #325549;
  opacity: 0;
}

.check-box input:checked + label:after {
  opacity: 1;
}

.check-box input:checked + label:before{
  background: #004d3f;
  border-color: #004d3f;
}


/** header-style-four **/

.header-style-four{
  position: relative;
  padding: 30px 0px;
}

.header-style-four .outer-box{
  padding: 0px 40px;
}

.header-style-four .menu-area{
  display: none;
}

.header-style-four .left-column{
  position: relative;
  display: flex;
  align-items: center;
}

.header-style-four .left-column .category-list{
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-style-four .left-column .sidebar-menu{
  position: relative;
}

.header-style-four .left-column .sidebar-menu:before{
  position: absolute;
  content: '';
  background: #e8edec;
  top: -5px;
  right: 0px;
  width: 1px;
  height: 36px;
}

.header-style-four .left-column .sidebar-menu .side-menu-btn{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
}

.header-style-four .left-column .sidebar-menu .side-menu-btn img{
  position: relative;
  display: inline-block;
  transition: all 500ms ease;
}

.header-style-four .left-column .sidebar-menu.cart-visible .side-menu-btn img{
  transform: rotateY(180deg);
}

.header-style-four .left-column .search-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.header-style-four .menu-content {
  position: absolute;
  width: 335px;
  background: #0f2028;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  transform: scaleY(0);
  transform-origin: top center;
  top: 62px;
  right: 20px;
  padding: 34px 40px 40px 40px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  transition: all 500ms ease;
}

.header-style-four .menu-content:before{
  position: absolute;
  content: '';
  background: #0f2028;
  width: 40px;
  height: 20px;
  top: -20px;
  right: 28px;
  clip-path: polygon(0% 0%, 50% 0%, 100% 100%, 0% 100%, 50% 0%);
}

.header-style-four .cart-visible .menu-content{
  opacity: 1;
  visibility: visible;
  display: block;
  transform: scaleY(1);
}

.header-style-four .menu-content .close-icon{
  position: absolute;
  top: -62px;
  right: 6px;
  width: 83px;
  height: 26px;
  text-align: center;
  font-size: 0px;
  z-index: 0;
  cursor: pointer;
}

.header-style-four .cart-visible .menu-content .close-icon{
  z-index: 9;
}

.header-style-four .menu-content .navigation{
  position: relative;
  padding-bottom: 27px;
  border-bottom: 1px solid #1b323c;
  margin-bottom: 40px;
}

.header-style-four .menu-content .menu-lower-content .icon-box{
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 22px;
}

.header-style-four .menu-content .menu-lower-content h3{
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 8px;
}

.header-style-four .menu-content .menu-lower-content p{
  color: #abb4b8;
  margin-bottom: 26px;
}

.header-style-four .menu-content .menu-lower-content .theme-btn{
  color: var(--title-color) !important;
}

.header-style-four .menu-content .menu-lower-content .theme-btn:before{
  background: #fff;
}

.header-style-four .menu-content .navigation > li{
  position: relative;
  display: block;
  padding: 9px 0px;
}

.header-style-four .menu-content .navigation > li .dropdown-btn{
  display: none;
}

.header-style-four .menu-content .navigation > li > a{
  position:relative;
  display:block;
  font-size:18px;
  line-height:26px;
  font-weight:700;
  font-family: var(--title-font);
  color: #fff;
  text-transform: capitalize;
  z-index:1;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.header-style-four .menu-content .navigation > li > a:hover{
  color: #325549;
}

.header-style-four .menu-content .navigation > li.dropdown > a:before{
  position: absolute;
  content: "\f102";
  font-family: flaticon_flexibank;
  top: 0px;
  right: 0px;
  font-size: 14px;
  color: #a8a7a7;
  transition: all 500ms ease;
}

.header-style-four .menu-content .navigation > li > ul{
  position:absolute;
  left: 100%;
  margin-left: 40px;
  top:0px;
  width:220px;
  z-index:100;
  display: inline-block;
  background: #0f2028;
  opacity: 0;
  padding: 20px 30px;
  visibility: hidden;
  border-radius: 0px;
  transform: scaleX(0);
  transform-origin: left center;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.header-style-four .menu-content .navigation > li.dropdown:hover > ul{
  visibility:visible;
  opacity:1;
  transform: scaleX(1);
}

.header-style-four .menu-content .navigation > li > ul > li{
  position:relative;
  display: block;
  padding: 8px 0px;
}

.header-style-four .menu-content .navigation > li > ul > li > a{
  position:relative;
  display:block;
  line-height:26px;
  font-weight:400;
  font-size:18px;
  text-transform:capitalize;
  font-family: var(--title-font);
  color:#fff;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.header-style-four .menu-content .navigation > li > ul > li > a:hover{
  color: #325549;
}

.header-style-four .menu-content .navigation > li > ul > li.dropdown > a:before{
  position: absolute;
  content: "\f102";
  font-family: flaticon_flexibank;
  top: 0px;
  right: 0px;
  font-size: 14px;
  color: #a8a7a7;
  transition: all 500ms ease;
}

.header-style-four .menu-content .navigation > li > ul > li > ul{
  position:absolute;
  left: 100%;
  margin-left: 30px;
  top:0px;
  width:270px;
  z-index:100;
  display: inline-block;
  background: #0f2028;
  opacity: 0;
  padding: 20px 30px;
  visibility: hidden;
  border-radius: 0px;
  transform: scaleX(0);
  transform-origin: left center;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.header-style-four .menu-content .navigation li > ul > li.dropdown:hover > ul{
  visibility:visible;
  opacity:1;
  transform: scaleX(1);
}

.header-style-four .menu-content .navigation > li > ul > li > ul > li{
  position:relative;
  display: block;
  padding: 9px 0px;
}

.header-style-four .menu-content .navigation > li > ul > li > ul > li > a{
  position:relative;
  display:block;
  line-height:26px;
  font-weight:400;
  font-size:18px;
  text-transform:capitalize;
  font-family: var(--title-font);
  color: #fff;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.header-style-four .menu-content .navigation > li > ul > li > ul > li > a:hover{
  color: #325549;
}

.header-style-four .menu-content .navigation > li > ul:before,
.header-style-four .menu-content .navigation > li > ul > li > ul:before{
  position: absolute;
  content: '';
  background: transparent;
  width: 40px;
  height: 100%;
  left: -40px;
  top: 0px;
}

.header-style-four .right-column{
  position: relative;
  display: flex;
  align-items: center;
}

.header-style-four .right-column .location-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-style-four .right-column .nice-select{
  font-size: 17px;
  line-height: 26px;
  font-family: var(--text-font);
  color: #67686b;
}

.header-style-four .right-column .nice-select .list{
  min-width: 120px;
}

.header-style-four .right-column .social-links{
  position: relative;
  display: flex;
  align-items: center;
  gap: 45px;
}

.header-style-four .right-column .social-links li{
  position: relative;
}

.header-style-four .right-column .social-links li:before{
  position: absolute;
  content: '';
  background: #a5aeac;
  width: 4px;
  height: 4px;
  top: 9px;
  right: -25px;
  border-radius: 50%;
}

.header-style-four .right-column .social-links li:last-child:before{
  display: none;
}

.header-style-four .right-column .social-links li a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--text-color);
}

.header-style-four .right-column .social-links li a:hover{
  color: var(--title-color);
}

.header-style-four .right-column .login-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-style-four .right-column .login-box .icon-box{
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 34px;
  border: 1px solid #e6ebea;
  border-radius: 50%;
  text-align: center;
}

.header-style-four .right-column .location-box:before,
.header-style-four .right-column .social-links:before{
  position: absolute;
  content: '';
  background: #e8edec;
  width: 1px;
  height: 36px;
  top: -5px;
  right: 0px;
}

.header-style-four .sticky-header .outer-container{
  padding: 15px 0px;
}


/** banner-style-four **/

.banner-style-four{
  position: relative;
  padding: 142px 0px 100px 0px;
  background: #f1f6f5;
}

.banner-style-four .upper-content{
  position: relative;
  display: block;
}

.banner-style-four .upper-content h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #004d3f;
  margin-bottom: 18px;
}

.banner-style-four .upper-content h2{
  display: block;
  font-size: 70px;
  line-height: 80px;
  text-transform: uppercase;
  margin-bottom: 17px;
}

.banner-style-four .upper-content p{
  margin-bottom: 42px;
}

.banner-style-four .upper-content .theme-btn{
  color: var(--title-color) !important;
}

.banner-style-four .upper-content .theme-btn:hover{
  color: #fff !important;
}

.banner-style-four .lower-content .single-item{
  position: relative;
  display: block;
}

.banner-style-four .lower-content .single-item h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 19px;
}

.banner-style-four .lower-content .single-item ul{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-style-four .lower-content .single-item .download-list{
  gap: 10px;
}

.banner-style-four .lower-content .single-item .download-list li a{
  position: relative;
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 58px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  color: #a8aca5;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
}

.banner-style-four .lower-content .single-item .download-list li a:hover{
  background: #325549;
  border-color: #325549;
  color: var(--title-color);
}

.banner-style-four .lower-content .single-item .clients-list li,
.banner-style-four .lower-content .single-item .icon-list li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
  margin: 0px -5px;
  background: #f1f6f5;
  font-size: 24px;
  font-family: var(--title-font);
  font-weight: 700;
  color: #004d3f;
}

.banner-style-four .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-color-5{
  background: #f1f6f5;
}


/** investment-section **/

.investment-section{
  position: relative;
}

.investment-section .bg-color{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 50%;
}

.investment-block-one{
  position: relative;
  background: #0f2028;
  padding: 43px 50px 50px 50px;
  overflow: hidden;
}

.investment-block-one .inner-box{
  position: relative;
  max-width: 375px;
}

.investment-block-one .inner-box p{
  color: #abb4b8;
  margin-bottom: 34px;
}

.investment-block-one .inner-box .theme-btn{
  color: var(--title-color) !important;
}

.investment-block-one .inner-box .theme-btn:before{
  background: #fff;
}

.investment-block-one .inner-box .sec-title{
  margin-bottom: 12px;
}

.investment-block-one .image-box{
  position: absolute;
  right: 48px;
  bottom: 70px;
}

.investment-block-one .shape{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: right center;
}

.investment-block-two .inner-box{
  position: relative;
  display: block;
  background: #004d3f;
  padding: 43px 50px 50px 50px;
}

.investment-block-two .inner-box .image-box{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.investment-block-two .inner-box h4{
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  max-width: 180px;
  margin-bottom: 58px;
}

.investment-block-two .inner-box h4:before{
  position: absolute;
  content: '';
  background-image: url(../images/shape/shape-26.png);
  width: 90px;
  height: 103px;
  left: 50px;
  bottom: -116px;
  background-repeat: no-repeat;
}

.investment-block-two .inner-box .video-btn a{
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 78px;
  text-align: center;
  border-radius: 50%;
  background: #325549;
  margin-bottom: 85px;
}

.investment-block-two .inner-box .download-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.investment-block-two .inner-box .download-box button{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
}

.investment-block-two .inner-box .download-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
}

.investment-block-two .inner-box .shape{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: right center;
}

.investment-block-two .inner-box .big-text{
  position: absolute;
  top: 0px;
  right: 110px;
  font-size: 70px;
  line-height: 70px;
  font-family: var(--title-font);
  font-weight: 800;
  height: 100%;
  text-align: center;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  color: transparent;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(-90deg, #146153, #0a5e4f 100%);
}


.banking-service.home-4 .sec-title .sub-title{
  color: #004d3f;
}

.banking-service.home-4 .sec-title .sub-title:before,
.banking-service.home-4 .sec-title .sub-title:after{
  background: #004d3f;
}

.banking-service.home-4 .tab-btn .icon-box:before{
  background: #f1f6f5;
}

.banking-service.home-4 .tab-btn-box .owl-nav button{
  background: #ecf1f0;
}

.banking-service.home-4 .tab-btn-box .owl-nav button:hover{
  background: #004d3f;
}

.banking-service.home-4 .tab-btn:before{
  background: var(--secondary-color);
}

.banking-service.home-4 .content-box .inner-box h6{
  color: var(--secondary-color);
}

.banking-service.home-4 .list-style-one li .icon-box{
  background: #f1f6f5;
}

.banking-service.home-4 .content-box .lower-text h5 a,
.banking-service.home-4 .content-box .lower-text .icon-box{
  color: var(--secondary-color);
}

.banking-service.home-4 .content-box .inner-box .inner h6{
  color: #a5aeac;
}

.secure-growth-two.dark-section .big-text{
  color: #e4ebea;
  font-size: 100px;
  line-height: 100px;
  left: 85px;
}

.secure-growth-two.dark-section .sec-title .sub-title{
  color: var(--secondary-color);
}

.secure-growth-two.dark-section .sec-title .sub-title:before,
.secure-growth-two.dark-section .sec-title .sub-title:after{
  background: var(--secondary-color);
}

.secure-growth-two.dark-section .owl-nav button{
  background: transparent;
  border-color: #dfe4e3;
  color: #a9ada6;
}

.secure-growth-two.dark-section .owl-nav button:hover{
  color: #fff;
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.secure-growth-two.dark-section .growth-block-two .inner-box{
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
}

.secure-growth-two.dark-section .growth-block-two .inner-box:before{
  background: var(--secondary-color);
}

.secure-growth-two.dark-section .growth-block-two .inner-box h3 a{
  color: var(--title-color);
}

.secure-growth-two.dark-section .growth-block-two .inner-box h3{
  border-bottom: 1px solid #e5ebea;
}

.secure-growth-two.dark-section .growth-block-two .inner-box .icon-box .icon{
  background: #f1f6f5;
}

.secure-growth-two.dark-section .growth-block-two .inner-box .icon-box .count-text{
  -webkit-text-stroke-color: #f1f6f5;
  color: #f1f6f5;
}

.secure-growth-two.dark-section .growth-block-two .inner-box p,
.secure-growth-two.dark-section .growth-block-two .inner-box .list-item li a{
  color: #666a69;
}

.secure-growth-two.dark-section .growth-block-two .inner-box .list-item li a img{
  opacity: 0.5;
}

.secure-growth-two.dark-section .growth-block-two .inner-box .list-item li a:hover img{
  opacity: 1;
}

.secure-growth-two.dark-section .growth-block-two .inner-box .list-item li{
  border-color: #e5ebea;
}

.secure-growth-two.dark-section .image-layer img{
  filter: grayscale(0%);
}

.secure-growth-two.dark-section .growth-block-two .inner-box:hover{
  border-color: #fff;
}


.exchange-section.light-section{
  background: var(--secondary-color) !!important;
}

.exchange-section.light-section .nav-style-one .owl-nav button{
  border-color: #30424a;
  color: #abb4b8;
}

.exchange-section.light-section .nav-style-one .owl-nav button:hover{
  color: #fff;
}

.exchange-section.light-section .tab-btn-box .tab-btns li{
  border-color: #30424a;
}

.exchange-section.light-section .tab-btn-box .tab-btns li.active-btn{
  color: var(--title-color);
}

.exchange-section.light-section .more-text h5{
  color: #fff;
}


/** instant-section **/

.instant-section{
  position: relative;
}

.home_4 .instant-section .sec-title .sub-title{
  color: var(--secondary-color);
}

.home_4 .instant-section .sec-title .sub-title:before,
.home_4 .instant-section .sec-title .sub-title:after{
  background: var(--secondary-color);
}

.instant-section .content-box{
  position: relative;
  display: block;
}

.instant-section .content-box .accordion{
  position: relative;
  background: #fff;
  border: 1px solid #e6e4e4;
  margin-bottom: 10px;
}

.home_4 .instant-section .content-box .accordion{
  border-color: #e5ebea;
}

.instant-section .content-box .accordion:last-child{
  margin-bottom: 0px;
}

.instant-section .content-box .accordion.active-block{
  background: #f5f4f4;
  border-color: #f5f4f4;
}

.home_4 .instant-section .content-box .accordion.active-block{
  background: #f0f5f4;
  border-color: #f0f5f4;
}

.instant-section .content-box .accordion .acc-btn{
  position: relative;
  padding: 26px 60px 26px 29px;
  cursor: pointer;
}

.instant-section .content-box .accordion .acc-btn .icon-box{
  position: absolute;
  top: 29px;
  right: 30px;
  font-size: 18px;
  color: #e2e0e0;
  transform: rotate(-90deg);
  transition: all 500ms ease;
}

.home_4 .instant-section .content-box .accordion .acc-btn .icon-box{
  color: #dfe4e3;
}

.home_4 .instant-section .content-box .accordion .acc-btn.active .icon-box{
  color: var(--secondary-color);
}

.instant-section .content-box .accordion .acc-btn.active .icon-box{
  transform: rotate(0deg);
  color: #325549;
}

.instant-section .content-box .accordion .acc-btn h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
  padding-left: 40px;
}

.instant-section .content-box .accordion .acc-btn h4 img{
  position: absolute;
  left: 0px;
  top: 2px;
}

.instant-section .content-box .accordion .acc-content{
  position: relative;
  padding: 0px 30px 30px 30px;
}

.instant-section .content-box .accordion .acc-content .content{
  position: relative;
  margin: 0px 10px;
}

.instant-section .content-box .accordion .acc-content .single-column{
  padding: 0px 5px;
}

.instant-section .content-box .accordion .acc-content .single-item{
  position: relative;
  display: block;
}

.instant-section .content-box .accordion .acc-content .single-item a{
  position: relative;
  display: inline-block;
  width: 100%;
  background: #fff;
  padding: 25px 30px 19px 25px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  color: var(--text-color);
}

.instant-section .content-box .accordion .acc-content .single-item a:hover{
  color: var(--title-color);
}

.instant-section .content-box .accordion .acc-content .single-item img{
  position: relative;
  display: block;
  opacity: 0.3;
  transform: rotate(45deg);
  filter: grayscale(100%);
  margin-bottom: 12px;
  transition: all 500ms ease;
}

.instant-section .content-box .accordion .acc-content .single-item a:hover img{
  opacity: 1;
  transform: rotate(0deg);
  filter: grayscale(0%);
}

.instant-section .content-box .accordion .acc-content .single-item span{
  position: relative;
  display: block;
  transition: all 500ms ease;
}

.instant-section .support-inner{
  position: relative;
  display: block;
}

.instant-section .support-inner .support-icon{
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.instant-section .support-inner .support-icon .shape{
  position: absolute;
  top: 15px;
  right: 105px;
  width: 68px;
  height: 100px;
  background-repeat: no-repeat;
}

.instant-section .support-inner .support-box{
  position: relative;
  display: block;
  background: var(--secondary-color);
  padding: 40px 30px;
}

.home_4 .instant-section .support-inner .support-box{
  background: #0f2028;
}

.instant-section .support-inner .support-box .image-box{
  position: relative;
  display: block;
  margin-right: 20px;
}

.instant-section .support-inner .support-box .image-box img{
  width: 100%;
}

.instant-section .support-inner .support-box .lower-content{
  position: relative;
  padding-top: 33px;
}

.instant-section .support-inner .support-box .lower-content .big-text{
  position: absolute;
  right: -8px;
  bottom: 95px;
  font-size: 60px;
  line-height: 60px;
  font-family: var(--title-font);
  color: #661d1a;
  font-weight: 800;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.home_4 .instant-section .support-inner .support-box .lower-content .big-text{
  color: #182d38;
}

.instant-section .support-inner .support-box .lower-content .info-list li{
  position: relative;
  display: block;
  font-size: 17px;
  color: #ceb2ad;
  margin-bottom: 15px;
}

.home_4 .instant-section .support-inner .support-box .lower-content .info-list li{
  color: #abb4b8;
}

.instant-section .support-inner .support-box .lower-content .info-list li:last-child{
  margin-bottom: 0px;
}

.instant-section .support-inner .support-box .lower-content .info-list li a{
  display: inline-block;
  color: #fff;
}

.instant-section .support-inner .support-box .lower-content .info-list li a:hover{
  color: #325549;
}

.home_4 .instant-section .support-inner .support-box .lower-content .info-list li span{
  color: #4b5f6a;
}

.instant-section .support-inner .support-box .lower-content .info-list li span{
  color: #9c6960;
}

.home_4 .instant-section .support-inner .support-box .lower-content .theme-btn{
  text-align: center;
  color: var(--title-color) !important;
}

.home_4 .instant-section .support-inner .support-box .lower-content .theme-btn:hover{
  color: #fff !important;
}

.home_4 .instant-section .support-inner .support-box .lower-content .theme-btn:before{
  background: var(--secondary-color);
}

.instant-section .support-inner .support-box .lower-content .theme-btn{
  width: 100%;
}

.instant-section .support-inner .support-box .lower-content .theme-btn:hover{
  color: var(--title-color) !important;
}

.instant-section .support-inner .support-box .lower-content .theme-btn:before{
  background: #fff;
}

.working-section.home-4 .sec-title .sub-title{
  color: var(--secondary-color);
}

.working-section.home-4 .sec-title .sub-title:before,
.working-section.home-4 .sec-title .sub-title:after{
  background: var(--secondary-color);
}

.working-section.home-4 .working-block-one .inner-box .count-text{
  background: #f1f6f5;
  border-color: #e6ebea;
}

.working-section.home-4 .working-block-one .inner-box .icon-box{
  background: #e4eae9;
}

.working-section.home-4 .working-block-one .inner-box .icon-box:before{
  border-color: #dfe4e3;
}

.working-section.home-4 .more-text h5 a,
.working-section.home-4 .more-text h5 i{
  color: var(--secondary-color);
}


.locker-facility.home-4 .sec-title .sub-title,
.locker-facility.home-4 .content-box .text-box h5 a,
.locker-facility.home-4 .content-box .text-box h5 i,
.locker-facility.home-4 .content-box .inner-box h6{
  color: var(--secondary-color);
}

.locker-facility.home-4 .sec-title .sub-title:before,
.locker-facility.home-4 .sec-title .sub-title:after{
  background: var(--secondary-color);
}

.locker-facility.home-4 .content-box .inner-box {
  background: linear-gradient(90deg, #f1f6f5 50%, #fff 100%);
}

.locker-facility.home-4 .content-box .inner-box h6:before {
  background: linear-gradient(90deg, var(--secondary-color) 0%, #f9fbfb 100%);
}

.locker-facility .content-box .inner-box .single-item{
  border-right: 1px solid #dfe4e3;
}

.locker-facility .content-box .inner-box .single-column:last-child .single-item{
  border: none;
}

.locker-facility.home-4 .content-box .btn-box .theme-btn{
  background: #325549;
  color: var(--title-color) !important;
}

.locker-facility.home-4 .content-box .btn-box .theme-btn span:before{
  color: var(--title-color);
}

.locker-facility.home-4 .content-box .btn-box .theme-btn:hover,
.locker-facility.home-4 .content-box .btn-box .theme-btn:hover span:before{
  color: #fff !important;
}

.locker-facility.home-4 .content-box .btn-box .theme-btn:before{
  background: var(--secondary-color);
}

.creditcard-section.home-4{
  background: #0f2028;
}

.creditcard-section.home-4 .content-box .inner-box .form-inner .form-group input[type='text']{
  color: #4b5f6a;
}

.creditcard-section.home-4 .content-box .inner-box .form-inner .form-group button[type='submit'] i,
.creditcard-section.home-4 .content-box .inner-box .form-inner .form-group button[type='submit']:hover{
  color: var(--title-color);
}

.clients-section.home-4 .sec-title .sub-title{
  color: var(--secondary-color);
}

.clients-section.home-4 .sec-title .sub-title:before,
.clients-section.home-4 .sec-title .sub-title:after{
  background: var(--secondary-color);
}

.clients-section.home-4 .dots-style-one .owl-dots button.active{
  border-color: var(--secondary-color);
}

.testimonial-style-two.home-4 .big-text{
  background: -webkit-linear-gradient(-90deg, #f1f6f5, #fff 100%);
}

.testimonial-style-two.home-4 .testimonial-block-one .inner-box .rating,
.testimonial-style-two.home-4 .testimonial-block-one .inner-box .rating:before,
.testimonial-style-two.home-4 .testimonial-block-one .inner-box .rating:after{
  background: #f1f6f5;
}


/** footer-style-four **/

.footer-style-four{
  position: relative;
  background: #0f2028;
}

.footer-style-four .widget-section{
  position: relative;
  padding: 110px 0px 75px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-style-four .widget-title{
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.footer-style-four .widget-title h3{
  font-size: 24px;
  line-height: 32px;
  color: #fff;
}

.footer-style-four .contact-widget .light-icon{
  position: absolute;
  top: 5px;
  right: 0px;
}

.footer-style-four .contact-widget .info-list li{
  position: relative;
  display: block;
  padding-left: 40px;
  color: #abb4b8;
  margin-bottom: 16px;
}

.footer-style-four .contact-widget .info-list li:last-child{
  margin-bottom: 0px;
}

.footer-style-four .contact-widget .info-list li .icon-box{
  position: absolute;
  left: 0px;
  top: 0px;
}

.footer-style-four .contact-widget .info-list li a{
  display: inline-block;
  color: #abb4b8;
  font-family: var(--text-font);
}

.footer-style-four .contact-widget .info-list li a:hover{
  color: #325549;
}

.footer-style-four .contact-widget .info-list li.link a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 700;
  padding-left: 25px;
}

.footer-style-four .contact-widget .info-list li.link a i{
  position: absolute;
  left: -2px;
  top: 5px;
  font-size: 20px;
  color: #325549;
}

.footer-style-four .contact-widget .info-list li.link a:hover{
  color: #325549;
}

.footer-style-four .subscribe-widget .big-text{
  position: relative;
  display: block;
  font-size: 150px;
  line-height: 120px;
  font-family: var(--title-font);
  font-weight: 800;
  text-transform: uppercase;
  color: transparent;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(-90deg, #213843, #142730 100%);
  margin-bottom: 33px;
}

.footer-style-four .subscribe-widget .image-box{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0px;
  z-index: 1;
}

.footer-style-four .subscribe-widget .form-inner .form-group{
  position: relative;
  margin-bottom: 15px;
}

.footer-style-four .subscribe-widget .form-inner .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  background: #fff;
  border-radius: 1px solid #fff;
  font-size: 17px;
  color: #535155;
  padding: 10px 190px 10px 50px;
}

.footer-style-four .subscribe-widget .form-inner .form-group .icon-box{
  position: absolute;
  left: 20px;
  top: 14px;
  z-index: 1;
}

.footer-style-four .subscribe-widget .form-inner .form-group button[type='submit']{
  position: absolute;
  top: 0px;
  right: 0px;
}

.footer-style-four .subscribe-widget .form-inner .form-group button.theme-btn{
  color: var(--title-color);
}

.footer-style-four .subscribe-widget .lower-text{
  position: relative;
  padding-left: 22px;
}

.footer-style-four .subscribe-widget .lower-text .icon-box{
  position: absolute;
  left: 0px;
  top: -2px;
}

.footer-style-four .subscribe-widget .lower-text p{
  color: #abb4b8;
}

.footer-style-four .footer-bottom{
  position: relative;
  padding: 30px 0px;
}

.footer-style-four .footer-bottom .bottom-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-style-four .footer-bottom .footer-logo{
  position: relative;
  display: flex;
  align-items: center;
}

.footer-style-four .footer-bottom .footer-logo .logo{
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-style-four .footer-bottom .footer-logo p{
  color: #abb4b8;
}

.footer-style-four .footer-bottom .footer-menu{
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-style-four .footer-bottom .footer-menu li{
  position: relative;
  display: inline-block;
}

.footer-style-four .footer-bottom .footer-menu li a{
  color: #abb4b8;
}

.footer-style-four .footer-bottom .footer-menu li a:hover{
  color: #325549;
}


/** page-title **/

.page-title{
  position: relative;
  padding: 136px 0px 32px 0px;
}

.page-title .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-title .bg-layer:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: -webkit-linear-gradient(0deg, rgba(85,4,1,1.0) 50%, rgba(85,4,1,0.0) 75%);
}

.page-title .pattern-layer{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.88;
}

.page-title h1{
  position: relative;
  display: block;
  font-size: 60px;
  line-height: 68px;
  color: #fff;
  margin-bottom: 81px;
}

.page-title .bread-crumb{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 28px;
}

.page-title .bread-crumb li{
  position: relative;
  display: inline-block;
  color: #ceb2ad;
}

.page-title .bread-crumb li a{
  display: inline-block;
  color: #ceb2ad;
}

.page-title .bread-crumb li a:hover{
  color: #fff;
  text-decoration: underline;
}

.page-title .bread-crumb li span{
  color: #fff;
}

.page-title .bread-crumb li:before{
  position: absolute;
  content: "\f102";
  font-family: flaticon_flexibank;
  font-size: 16px;
  top: 1px;
  right: -20px;
  color: #ceb2ad;
}

.page-title .bread-crumb li:last-child:before{
  display: none;
}

.pb_90{
  padding-bottom: 90px !important;
}


/** overview-section **/

.overview-section{
  position: relative;
}

.overview-section .content-box{
  position: relative;
  display: block;
}

.overview-section .content-box .text-box h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #545151;
  margin-bottom: 4px;
}

.overview-section .content-box .text-box h2{
  display: inline-block;
  font-size: 36px;
  line-height: 44px;
  color: #325549;
  margin-bottom: 19px;
  padding-right: 38px;
}

.overview-section .content-box .text-box h2:before{
  position: absolute;
  content: '';
  background-image: url(../images/shape/shape-35.png);
  width: 27px;
  height: 16px;
  bottom: 15px;
  right: 0px;
  background-repeat: no-repeat;
}

.overview-section .content-box .text-box h2 span{
  font-size: 20px;
  color: var(--title-color);
}

.overview-section .content-box .text-box{
  margin-bottom: 42px;
}

.overview-section .content-box .btn-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.overview-section .content-box .btn-box .theme-btn{
  background: var(--secondary-color);
}

.overview-section .content-box .btn-box .theme-btn:before{
  background: #325549;
}

.overview-section .content-box .btn-box button[type='button']{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  transition: all 500ms ease;
}

.overview-section .content-box .btn-box button:hover{
  color: #325549;
}

.overview-section .content-box .btn-box button img{
  margin-right: 10px;
}

.overview-section .inner-box{
  position: relative;
  display: block;
}

.overview-section .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  background: #fff;
  padding: 19px 20px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
  text-align: center;
}

.overview-section .inner-box .inner-content{
  position: relative;
  background: #f5f4f4;
}

.overview-section .inner-box .inner-content:before{
  position: absolute;
  content: '';
  background: #e1dfdf;
  width: 1px;
  height: calc(100% - 80px);
  left: 50%;
  top: 40px;
  z-index: 1;
}

.overview-section .inner-box .inner-content .shape-2{
  position: absolute;
  background: #e1dfdf;
  height: 1px;
  width: calc(100% - 80px);
  top: 50%;
  left: 40px;
  z-index: 1;
}

.overview-section .inner-box .inner-content .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.overview-section .inner-box .single-item{
  position: relative;
  float: left;
  width: 50%;
  text-align: center;
  padding: 40px 30px;
}

.overview-section .inner-box .single-item .icon-box{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 68px;
  background: #eaeaea;
  text-align: center;
  border-radius: 50%;
  border: 1px dashed #325549;
  margin-bottom: 16px;
}

.overview-section .inner-box .single-item h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
}

.overview-section .inner-box .single-item .text-box{
  position: absolute;
  top: 100%;
  background: #fff;
  left: 15px;
  width: calc(100% - 30px);
  background: #fff;
  padding: 25px 25px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
  z-index: 1;
  margin-top: 0px;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}

.overview-section .inner-box .single-item .text-box:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 18px;
  height: 12px;
  left: 50%;
  margin-left: -9px;
  top: -12px;
  clip-path: polygon(0% 0%, 50% 0%, 100% 100%, 0% 100%, 50% 0%);
}

.overview-section .inner-box .single-item:hover .text-box{
  opacity: 1;
  visibility: visible;
  margin-top: -17px;
}

.overview-section .sec-title{
  margin-bottom: 32px;
}


/** features-section **/

.features-section{
  position: relative;
  padding: 113px 0px 60px 0px;
}

.feature-block-one .inner-box{
  position: relative;
  display: block;
  padding: 0px 20px;
  margin-bottom: 53px;
}

.feature-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #eaeaea;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 22px;
  transition: all 500ms ease;
}

.feature-block-one .inner-box .icon-box img{
  position: relative;
  display: inline-block;
  filter: grayscale(100%);
  transition: all 500ms ease;
}

.feature-block-one .inner-box:hover .icon-box img{
  filter: grayscale(0%);
}

.feature-block-one .inner-box:hover .icon-box{
  background: #fff;
}

.feature-block-one .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 12px;
}

.feature-block-one .inner-box h3 a{
  position: relative;
  display: inline-block;
  color: var(--title-color);
}

.feature-block-one .inner-box h3 a:hover{
  color: #325549;
}


/** documents-section **/

.documents-section{
  position: relative;
}

.documents-section .bg-color{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 50%;
}

.documents-section .inner-container{
  position: relative;
  background: var(--secondary-color);
  padding: 73px 60px 80px 60px;
}

.documents-section .sec-title{
  margin-bottom: 0px;
}

.documents-section .sec-title p{
  color: #ceb2ad;
  margin-bottom: 33px;
}

.documents-section .list-item li{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 26px;
  color: #fff;
  padding: 15px 0px 15px 30px;
  border-bottom: 1px solid #71211e;
}

.documents-section .list-item li:last-child{
  border-bottom: none;
}

.documents-section .list-item li span{
  color: #ceb2ad;
}

.documents-section .list-item li i{
  position: absolute;
  left: 0px;
  top: 19px;
  color: #a37574;
  font-size: 16px;
}

.documents-section .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.documents-section .sec-title .theme-btn:hover{
  color: var(--title-color) !important;
}

.documents-section .sec-title .theme-btn:before{
  background: #fff;
}


.working-section.alternat-2 .working-block-one .inner-box{
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
}

.working-section.alternat-2 .working-block-one .inner-box .count-text{
  background: #fff;
  border-color: #e7e5e5;
}

.working-section.alternat-2 .working-block-one .inner-box .icon-box{
  background: #f5f4f4;
}


/** performance-section **/

.performance-section{
  position: relative;
  background: var(--secondary-color);
  padding: 113px 0px;
}

.performance-section .pattern-layer{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.performance-section .content-box{
  position: relative;
  display: block;
}

.performance-section .content-box .sec-title{
  margin-bottom: 32px;
}

.performance-section .content-box .text-box{
  margin-bottom: 31px;
}

.performance-section .content-box .text-box p{
  color: #ceb2ad;
}

.performance-section .content-box .inner-box{
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
}

.performance-section .content-box .inner-box .single-item{
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.performance-section .content-box .inner-box .single-item .icon-box{
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
}

.performance-section .content-box .inner-box .single-item p{
  color: #fff;
  font-weight: 500;
}

.performance-section .content-box .inner-box .single-item:before{
  position: absolute;
  content: '';
  width: 1px;
  height: calc(100% - 7px);
  top: 4px;
  right: -30px;
  background: #71211e;
}

.performance-section .content-box .inner-box .single-item:last-child:before{
  display: none;
}

.progress-box .bar{
  position:relative;
  width:100%;
  height:8px;
  background: #71211e;
}
  
.progress-box .bar-inner{
  position:relative;
  display:block;
  width:0px;
  height:8px;
  max-width: calc(100% - 15px) !important;
  background: #325549;
  -webkit-transition:all 1500ms ease;
  -ms-transition:all 1500ms ease;
  -o-transition:all 1500ms ease;
  -moz-transition:all 1500ms ease;
  transition:all 1500ms ease; 
}

.progress-box .bar-inner:before{
  position: absolute;
  content: '';
  background: #325549;
  width: 15px;
  height: 16px;
  top: -4px;
  right: -15px;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 0% 100%, 0% 0%);
}

.single-progress{
  position: relative;
  display: block;
  margin-bottom: 35px;
}

.single-progress h5{
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  margin-bottom: 13px;
}

.progress-box .bar span{
  position: absolute;
  top: -38px;
  right: 0px;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 700;
}

.performance-section .progress-content .percentage-box{
  position: absolute;
  left: 0px;
  bottom: -24px;
  width: 100%;
}

.performance-section .progress-content .percentage-box .text{
  position: absolute;
  top: 0px;
  font-size: 17px;
  line-height: 26px;
  color: #ceb2ad;
  right: 95%;
  height: 100%;
}

.performance-section .progress-content .percentage-box .text:nth-child(2){
  right: 75%;
}

.performance-section .progress-content .percentage-box .text:nth-child(3){
  right: 55%;
}

.performance-section .progress-content .percentage-box .text:nth-child(4){
  right: 35%;
}

.performance-section .progress-content .percentage-box .text:nth-child(5){
  right: 15%;
}

.performance-section .progress-content .percentage-box .text:nth-child(6){
  right: 0%;
}

.performance-section .progress-content .shape{
  position: absolute;
  left: 0px;
  top: 20px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.sec-pad-3{
  padding: 120px 0px 90px 0px !important;
}

.testimonial-block-one .inner-box .author-box .text{
  color: #325549;
}


/** cards-section **/

.cards-section{
  position: relative;
}

.cards-section .inner-container{
  position: relative;
  background: #f5f4f4;
}

.cards-section .inner-container .upper-content{
  position: relative;
  padding: 63px 70px 38px 70px;
}

.cards-section .content-box{
  position: relative;
  display: block;
  max-width: 490px;
}

.cards-section .content-box .list-style-one li{
  float: left;
  width: 50%;
  margin-bottom: 24px;
}

.cards-section .content-box .list-style-one li .icon-box{
  background: #eaeaea;
}

.cards-section .content-box .sec-title{
  margin-bottom: 28px;
}

.cards-section .lower-content{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding-left: 60px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
}

.cards-section .lower-content .more-text{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cards-section .lower-content .more-text h5 i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 20px;
  color: #325549;
}

.cards-section .lower-content .more-text h5{
  font-size: 18px;
  line-height: 26px;
  padding-left: 25px;
}

.cards-section .lower-content .more-text h5 a{
  display: inline-block;
  color: #325549;
  text-decoration: underline;
}

.cards-section .lower-content .theme-btn{
  padding-top: 23px;
  padding-bottom: 23px;
  background: var(--secondary-color);
}

.cards-section .lower-content .theme-btn:before{
  background: #325549;
}

.cards-section .lower-content .theme-btn span:before{
  color: #325549;
}

.cards-section .lower-content .theme-btn:hover span:before{
  color: #fff;
}



/** cards-style-two **/

.cards-style-two{
  position: relative;
}

.cards-sidebar{
  position: relative;
  display: block;
}

.cards-sidebar .widget-title{
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.cards-sidebar .widget-title h3{
  font-size: 24px;
  line-height: 32px;
}

.cards-sidebar .category-widget .category-list{
  position: relative;
  display: block;
  border: 1px solid #e6e4e4;
}

.cards-sidebar .category-widget .category-list li{
  position: relative;
  display: block;
}

.cards-sidebar .category-widget .category-list li a{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: var(--title-color);
  padding: 14px 20px;
  border-bottom: 1px solid #e6e4e4;
}

.cards-sidebar .category-widget .category-list li:last-child a{
  border-bottom: none;
}

.cards-sidebar .category-widget .category-list li a:hover,
.cards-sidebar .category-widget .category-list li a.current{
  background: #325549;
  border-color: #325549;
  color: #fff;
}

.cards-sidebar .category-widget .category-list li a:before{
  position: absolute;
  content: '';
  background: #a8a7a7;
  width: 6px;
  height: 6px;
  top: 24px;
  right: 19px;
  transition: all 500ms ease;
}

.cards-sidebar .category-widget .category-list li a:hover:before,
.cards-sidebar .category-widget .category-list li a.current:before{
  background: #fff;
  transform: rotate(45deg);
}

.cards-sidebar .contact-widget .inner-box{
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 294px 30px 30px 30px;
  text-align: center;
}

.cards-sidebar .contact-widget .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 12px;
}

.cards-sidebar .contact-widget .inner-box .text{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #ceb2ad;
  font-weight: 300;
  margin-bottom: 28px;
}

.cards-sidebar .contact-widget .inner-box .theme-btn{
  width: 100%;
}

.cards-sidebar .contact-widget .inner-box .theme-btn:hover{
  color: var(--title-color) !important;
}

.cards-sidebar .contact-widget .inner-box .theme-btn:before{
  background: #fff;
}

.cards-block-one .inner-box{
  position: relative;
  padding-left: 400px;
  margin-bottom: 40px;
  background: #fff;
  min-height: 409px;
}

.cards-block-one:last-child .inner-box{
  margin-bottom: 0px;
}

.cards-block-one .inner-box .cards-column{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 400px;
  background: #f5f4f4;
  padding: 33px 30px 40px 30px;
  text-align: center;
}

.cards-block-one .inner-box .cards-column h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 22px;
}

.cards-block-one .inner-box .cards-column h3 a{
  display: inline-block;
  color: var(--title-color);
}

.cards-block-one .inner-box .cards-column h3 a:hover{
  color: #325549;
}

.cards-block-one .inner-box .cards-column .image-box{
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.cards-block-one .inner-box .cards-column .image-box img{
  width: 100%;
}

.cards-block-one .inner-box .cards-column .btn-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cards-block-one .inner-box .cards-column .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: var(--title-color);
  background: #fff;
  padding: 13px 30px;
  width: 50%;
  text-align: center;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
}

.cards-block-one .inner-box .cards-column .btn-box a:hover{
  color: #fff;
  background: #325549 !important;
}

.cards-block-one .inner-box .cards-column .btn-box a:last-child{
  box-shadow: none;
  background: var(--secondary-color);
  color: #fff;
}

.cards-block-one .inner-box .content-column{
  position: relative;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
  padding: 33px 40px 33px 40px;
}

.cards-block-one .inner-box .content-column p{
  margin-bottom: 18px;
}

.cards-block-one .inner-box .content-column h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 15px;
}

.cards-block-one .inner-box .content-column .list-item{
  position: relative;
  display: block;
  padding-bottom: 36px;
  border-bottom: 1px solid #e6e4e4;
  margin-bottom: 23.5px;
}

.cards-block-one .inner-box .content-column .list-item li{
  position: relative;
  display: block;
  padding-left: 30px;
  margin-bottom: 13px;
}

.cards-block-one .inner-box .content-column .list-item li:last-child{
  margin-bottom: 0px;
}

.cards-block-one .inner-box .content-column .list-item li img{
  position: absolute;
  left: 0px;
  top: 4px;
}

.check-box-two input {
  display: none;
}

.check-box-two label {
  position: relative;
  font-size: 18px;
  line-height: 26px;
  color: var(--title-color);
  font-weight: 700;
  padding-left: 28px;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 0px;
}

.check-box-two label:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-style: solid;
  border-width: 1px;
  border-color: #e2e0e0;
}

.check-box-two label:after {
  position: absolute;
  content: "";
  background: #e2e0e0;
  width: 6px;
  height: 6px;
  left: 5px;
  top: 10px;
  opacity: 0;
  transition: all 500ms ease;
}

.check-box-two input:checked + label:after {
  opacity: 1;
}


/** card-details **/

.card-details{
  position: relative;
}

.card-details-content{
  position: relative;
  margin-left: 35px;
  padding-left: 65px;
  border-left: 1px solid #e6e4e4;
}

.card-details-content .content-one{
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.card-details-content .content-one h6{
  display: block;
  font-size: 15px;
  line-height: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: #325549;
}

.card-details-content h2{
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 28px;
}

.card-details-content .content-one p{
  margin-bottom: 19px;
}

.card-details-content .content-one p:last-child{
  margin-bottom: 0px;
}

.card-details-content .content-one .image-box .image{
  position: relative;
  display: block;
  background: #fff;
  padding: 15px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
}

.card-details-content .content-one .image-box .image img{
  width: 100%;
}

.card-details-content .content-two .single-item{
  position: relative;
  display: block;
  margin-bottom: 33px;
}

.card-details-content .content-two .single-item .icon-box{
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.card-details-content .content-two .single-item .icon-box:before{
  position: absolute;
  content: '';
  background: #e6e4e4;
  width: calc(100% - 50px);
  height: 1px;
  top: 16px;
  right: 0px;
}

.card-details-content .content-two .single-item h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 10px;
}

.card-details-content .deals-block-one .inner-box{
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
}

.card-details-content .content-four .accordion{
  position: relative;
  margin-bottom: 30px;
}

.card-details-content .content-four .accordion:last-child{
  margin-bottom: 0px;
}

.card-details-content .content-four .accordion.active-block{
  background: #f5f4f4;
}

.card-details-content .content-four .accordion .acc-btn{
  position: relative;
  cursor: pointer;
  padding: 21px 60px 21px 29px;
  border: 1px solid #e6e4e4;
}

.card-details-content .content-four .accordion .acc-btn.active{
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.card-details-content .content-four .accordion .acc-btn.active h4{
  color: #fff;
}

.card-details-content .content-four .accordion .acc-btn h4{
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 0px;
}

.card-details-content .content-four .accordion .acc-btn .icon-box{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 68px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 20px;
  color: #a8a7a7;
}

.card-details-content .content-four .accordion .acc-btn.active .icon-box{
  color: #325549;
}

.card-details-content .content-four .accordion .acc-btn .icon-box i{
  position: relative;
  display: inline-block;
  transition: all 500ms ease;
}

.card-details-content .content-four .accordion .acc-btn.active .icon-box i{
  transform: rotate(180deg);
}

.card-details-content .content-four .accordion .acc-btn .icon-box:before{
  position: absolute;
  content: '';
  background: #e6e4e4;
  width: 1px;
  height: 40px;
  left: 0px;
  top: 15px;
}

.card-details-content .content-four .accordion .acc-btn.active .icon-box:before{
  background: rgba(255, 255, 255, 0.15);
}

.card-details-content .content-four .accordion .acc-content{
  position: relative;
  padding: 33px 30px 40px 30px;
}

.card-details-content .content-four .accordion .acc-content h5{
  display: block;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 16px;
}

.card-details-content .content-four .accordion .acc-content .list-item li{
  position: relative;
  display: block;
  padding-left: 35px;
  margin-bottom: 12px;
}

.card-details-content .content-four .accordion .acc-content .list-item li:last-child{
  margin-bottom: 0px;
}

.card-details-content .content-four .accordion .acc-content .list-item li:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-16.png);
  width: 20px;
  height: 12px;
  left: 0px;
  top: 7px;
  background-repeat: no-repeat;
}


/** about-section **/

.about-section{
  position: relative;
}

.about-section .title-box .certified-box{
  position: relative;
  padding-left: 150px;
}

.about-section .title-box .certified-box h6{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: #325549;
  margin-bottom: 5px;
}

.about-section .title-box .certified-box h4{
  position: relative;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 9px;
}

.about-section .title-box .certified-box .text{
  position: relative;
  display: block;
  color: #545151;
}

.about-section .title-box .rotate-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 120px;
  height: 120px;
  display: flex;
  background: #f5f4f4;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
}

.about-section .title-box .rotate-box:before{
  position: absolute;
  content: '';
  background-image: url(../images/shape/shape-40.png);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}

.about-section .title-box .rotate-box .curved-circle-2{
  position: absolute;
  left: 60px;
  top: 3px;
  font-size: 14px;
  line-height: 20px;
  font-family: var(--title-font);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

.about-section .title-box .shape{
  position: absolute;
  right: 30px;
  bottom: 0px;
  width: 261px;
  height: 311px;
  background-repeat: no-repeat;
}

.about-section .upper-content .content-box{
  position: relative;
  display: block;
}

.about-section .upper-content .content-box .text-box p{
  margin-bottom: 22px;
}

.about-section .upper-content .content-box .text-box p:last-child{
  margin-bottom: 0px;
}

.about-section .upper-content .content-box .inner-box{
  position: relative;
  padding-left: 200px;
}

.about-section .upper-content .content-box .inner-box .icon-box{
  position: absolute;
  left: 0px;
  top: 0px;
}

.about-section .upper-content .content-box .inner-box .icon-box .icon{
  position: relative;
  display: inline-block;
  width: 120px;
  height: 120px;
  line-height: 120px;
  background: #f5f4f4;
  text-align: center;
  border-radius: 50%;
  top: 10px;
}

.about-section .upper-content .content-box .inner-box .icon-box .big-text{
  position: absolute;
  top: 4px;
  right: -55px;
  font-size: 28px;
  line-height: 36px;
  font-family: var(--title-font);
  color: #e6e4e4;
  font-weight: 800;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.about-section .upper-content .content-box .inner-box .list-item li{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: var(--title-color);
  padding-left: 30px;
  margin-bottom: 12px;
}

.about-section .upper-content .content-box .inner-box .list-item li:last-child{
  margin-bottom: 0px;
}

.about-section .upper-content .content-box .inner-box .list-item li:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-198.png);
  left: 0px;
  top: 5px;
  width: 16px;
  height: 14px;
  background-repeat: no-repeat;
}

.about-section .lower-content .left-content{
  position: relative;
  display: flex;
}

.about-section .lower-content .left-content .image-box{
  position: relative;
  display: block;
}

.about-section .lower-content .left-content .image-box img{
  width: 100%;
}

.about-section .lower-content .left-content .content-box{
  position: relative;
  display: block;
  background: var(--secondary-color);
  padding: 32px 40px 35px 30px;
  min-width: 370px;
}

.about-section .lower-content .left-content .content-box h2{
  display: block;
  font-size: 120px;
  line-height: 100px;
  color: #325549;
  margin-bottom: 18px;
}

.about-section .lower-content .left-content .content-box h2 span{
  position: relative;
  display: inline-block;
  font-size: 60px;
  line-height: 60px;
  top: -41px;
}

.about-section .lower-content .left-content .content-box h6{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 26px;
  color: #ceb2ad;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 54px;
  max-width: 110px;
}

.about-section .lower-content .left-content .content-box a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 700;
  padding-left: 25px;
}

.about-section .lower-content .left-content .content-box a i{
  position: absolute;
  left: 0px;
  top: 4px;
  font-size: 20px;
}

.about-section .lower-content .left-content .content-box a:hover{
  color: #325549;
}

.about-section .lower-content .left-content .bg-layer{
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 180px;
  height: 225px;
  background-repeat: no-repeat;
}

.about-section .lower-content .left-content .shape{
  position: absolute;
  top: 50px;
  right: 35px;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
}

.about-section .lower-content .video-content .inner-box{
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 150px 30px 33px 40px;
}

.about-section .lower-content .video-content .inner-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: -webkit-linear-gradient(-90deg, rgba(30,36,42,0.0) 25%, rgba(30,36,42,1) 100%);
}

.about-section .lower-content .video-content .inner-box .video-btn a{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
  color: #f3a6a8;
}

.about-section .lower-content .video-content .inner-box .video-btn a:before,
.about-section .lower-content .video-content .inner-box .video-btn a:after {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.about-section .lower-content .video-content .inner-box .video-btn a:after{
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.about-section .lower-content .video-content .inner-box .author-box .designation{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 26px;
  color: #a8a7a7;
  margin-bottom: 3px;
}

.about-section .lower-content .video-content .inner-box .author-box h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
}


/** statements-section **/

.statements-section{
  position: relative;
  background: #f5f4f4;
}

.statements-block-one .inner-box{
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.statements-block-one .inner-box .image-box{
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.statements-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
}

.statements-block-one .inner-box .image-box .image:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: -webkit-linear-gradient(-90deg, rgba(30,36,42,0.0) 25%, rgba(30,36,42,1) 100%);
}

.statements-block-one .inner-box .image-box .image img{
  width: 100%;
}

.statements-block-one .inner-box .image-box h3{
  position: absolute;
  left: 0px;
  bottom: 26px;
  width: 100%;
  text-align: center;
  z-index: 1;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
}

.statements-block-one .inner-box .text-box{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
  padding: 40px 30px 33px 30px;
}

.statements-block-one .inner-box .text-box:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 50px;
  height: 20px;
  left: 50%;
  margin-left: -25px;
  top: -20px;
  clip-path: polygon(0% 0%, 50% 0%, 100% 100%, 0% 100%, 50% 0%);
}

.statements-block-one .inner-box .text-box .icon-box{
  position: relative;
  display: inline-block;
  margin-bottom: 23px;
}

.statements-block-two .inner-box{
  position: relative;
  display: block;
  background: var(--secondary-color);
  padding: 40px 30px 30px 30px;
  margin-bottom: 30px;
}

.statements-block-two .inner-box .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.statements-block-two .inner-box .icon-box{
  position: relative;
  display: inline-block;
  margin-bottom: 21px;
}

.statements-block-two .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 13px;
}

.statements-block-two .inner-box p{
  color: #ceb2ad;
  margin-bottom: 43px;
}

.statements-block-two .inner-box .list-item{
  position: relative;
  display: block;
  background: #fff;
  text-align: left;
  padding: 28px 30px;
}

.statements-block-two .inner-box .list-item li{
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding-left: 30px;
}

.statements-block-two .inner-box .list-item li:last-child{
  margin-bottom: 0px;
}

.statements-block-two .inner-box .list-item li:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-202.png);
  width: 15px;
  height: 12px;
  left: 0px;
  top: 7px;
  background-repeat: no-repeat;
}

.awards-section.alternat-2 .award-block-one .inner-box .icon-box{
  background: var(--secondary-color);
  box-shadow: 0px 0px 0px 15px rgba(226, 32, 38, 0.05);
}


/** chooseus-section **/

.chooseus-section{
  position: relative;
  background: var(--secondary-color);
}

.chooseus-section .image-box{
  position: relative;
  display: block;
  margin-right: 30px;
  padding-right: 70px;
}

.chooseus-section .image-box .image{
  position: relative;
  display: block;
}

.chooseus-section .image-box .image img{
  width: 100%;
}

.chooseus-section .image-box .chart-box{
  position: absolute;
  top: 40px;
  right: 0px;
  width: 190px;
  text-align: center;
  padding: 23px 20px 25px 20px;
  background: -webkit-linear-gradient(-45deg, #a21618 0%, #400604 85%);
}

.chooseus-section .image-box .chart-box h6{
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.chooseus-section .image-box .chart-box .option-list{
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.chooseus-section .image-box .chart-box .option-list li{
  margin: 0px;
}

.chooseus-section .image-box .chart-box .option-list li .check-box label{
  font-size: 14px;
  line-height: 24px;
  font-family: var(--text-font);
  color: #fff;
  font-weight: 400;
  padding-left: 13px;
}

.chooseus-section .image-box .chart-box .option-list li .check-box label:after{
  display: none;
}

.chooseus-section .image-box .chart-box .option-list li .check-box label:before{
  width: 8px;
  height: 8px;
  background: #8083ff;
  border: none;
  top: 8px;
}

.chooseus-section .image-box .chart-box .option-list li .check-box input:checked + label:before{
  background: #f65d4e;
}

.chooseus-section .image-box .chart-box .text{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 2px;
}

.chooseus-section .image-box .chart-box .price{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #325549;
  font-weight: 600;
}

.chooseus-section .content-box{
  position: relative;
  display: block;
  margin-top: -7px;
}

.chooseus-block-one .inner-box{
  position: relative;
  display: block;
  padding-left: 90px;
  margin-bottom: 35px;
}

.chooseus-section .chooseus-block-one:last-child .inner-box{
  margin-bottom: 0px;
}

.chooseus-block-one .inner-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 7px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #63110e;
  text-align: center;
  border-radius: 50%;
  transition: all 500ms ease;
}

.chooseus-block-one .inner-box:hover .icon-box{
  background: #325549;
}

.chooseus-block-one .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 14px;
}

.chooseus-block-one .inner-box p{
  color: #ceb2ad;
}

.chooseus-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.team-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #e6e4e4;
  padding: 24px;
  margin-bottom: 30px;
}

.team-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.team-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
}

.team-block-one .inner-box .image-box .image:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
  opacity: 0;
  background: -webkit-linear-gradient(-90deg, rgba(85,4,1,0.0) 25%, rgba(85,4,1,1) 100%);
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .image:before{
  opacity: 1;
}

.team-block-one .inner-box .image-box .image img{
  width: 100%;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .image img{
  transform: scale(1.03);
}

.team-block-one .inner-box .image-box .social-links{
  position: absolute;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  left: 0px;
  bottom: 0px;
  justify-content: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .social-links{
  bottom: 25px;
  opacity: 1;
}

.team-block-one .inner-box .image-box .social-links li a{
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 44px;
  background: rgba(255, 255, 255, 0.20);
  text-align: center;
  font-size: 16px;
  color: #fff;
}

.team-block-one .inner-box .image-box .social-links li a:hover{
  background: #325549;
}

.team-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  padding-top: 17px;
}

.team-block-one .inner-box .lower-content h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 4px;
}

.team-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--title-color);
}

.team-block-one .inner-box .lower-content h3 a:hover{
  color: #325549;
}

.team-block-one .inner-box .lower-content .designation{
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.team-block-one .inner-box .lower-content form .form-group{
  position: relative;
  padding-left: 32px;
  padding-right: 30px;
}

.team-block-one .inner-box .lower-content form .form-group .icon-box{
  position: absolute;
  left: 0px;
  top: 0px;
}

.team-block-one .inner-box .lower-content form .form-group input[type='email']{
  position: relative;
  display: block;
  width: 80px;
  height: 26px;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  border-bottom: 1px solid #e6e4e4;
  transition: all 500ms ease;
}

.team-block-one .inner-box .lower-content form .form-group input:focus{
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--text-font);
  color: var(--text-color);
}

.team-block-one .inner-box .lower-content form .form-group button[type='submit']{
  position: absolute;
  top: 3px;
  right: 0px;
  font-size: 24px;
  color: #b6b5b5;
  cursor: pointer;
  transition: all 500ms ease;
}

.team-block-one .inner-box .lower-content form .form-group input:focus + button,
.team-block-one .inner-box .lower-content form .form-group button:hover{
  color: #325549;
}


/** team-details **/

.team-details{
  position: relative;
  padding: 120px 0px;
}

.team-details .image-box{
  position: relative;
  display: block;
}

.team-details .image-box img{
  width: 100%;
}

.team-details .content-box{
  position: relative;
  display: block;
  margin-top: -7px;
}

.team-details .content-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
}

.team-details .content-box h2{
  display: block;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 11px;
}

.team-details .content-box .designation{
  position: relative;
  display: block;
  margin-bottom: 24px;
}

.team-details .content-box p{
  margin-bottom: 23px;
}

.team-details .content-box .list-item li{
  position: relative;
  display: block;
  margin-bottom: 12px;
  padding-left: 26px;
}

.team-details .content-box .list-item li:last-child{
  margin-bottom: 0px;
}

.team-details .content-box .list-item li:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-198.png);
  left: 0px;
  top: 5px;
  width: 16px;
  height: 14px;
  background-repeat: no-repeat;
}

.team-details .content-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  margin-top: 19px;
  padding-left: 33px;
  margin-bottom: 25px;
}

.team-details .content-box h5 img{
  position: absolute;
  left: 0px;
  top: 4px;
}

.team-details .content-box h5 a{
  display: inline-block;
  color: var(--title-color);
}

.team-details .content-box h5 a:hover{
  color: #325549;
}

.team-details .content-box .social-links{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-details .content-box .social-links li a{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #e6e4e4;
  text-align: center;
  font-size: 18px;
  color: var(--title-color);
}

.team-details .content-box .social-links li a:hover{
  color: #fff;
  background: #325549;
  border-color: #325549;
}


/** careers-section **/

.careers-section{
  position: relative;
  padding: 120px 0px 90px 0px;
}

.careers-block-one{
  position: relative;
  display: block;
  background: #fff;
  padding: 27px 30px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 30px;
}

.careers-block-one .inner-box{
  position: relative;
  padding-right: 240px;
}

.careers-block-one .inner-box .btn-box{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 240px;
  padding-left: 30px;
  padding-top: 17px;
  padding-bottom: 17px;
  border-left: 1px solid #e9e7e7;
}

.careers-block-one .inner-box .btn-box .theme-btn{
  width: 100%;
}

.careers-block-one .inner-box .btn-box .theme-btn:first-child{
  background: #f5f4f4;
  margin-bottom: 10px;
  color: var(--title-color) !important;
}

.careers-block-one .inner-box .btn-box .theme-btn span:before{
  color: #325549;
}

.careers-block-one .inner-box .btn-box .theme-btn:first-child:hover,
.careers-block-one .inner-box .btn-box .theme-btn:hover span:before{
  color: #fff !important;
}

.careers-block-one .inner-box .btn-box .theme-btn:last-child{
  background: var(--secondary-color);
}

.careers-block-one .inner-box .btn-box .theme-btn:before{
  background: #325549;
}

.careers-block-one .inner-box .title-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid #e9e7e7;
  padding-right: 10px;
  margin-right: 20px;
}

.careers-block-one .inner-box .title-box .author-box{
  position: relative;
  display: block;
  padding: 0px 0px 0px 68px;
}

.careers-block-one .inner-box .title-box .author-box .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 4px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #f5f4f4;
  text-align: center;
  border-radius: 50%;
}

.careers-block-one .inner-box .title-box .author-box .text{
  position: relative;
  display: block;
  color: #a8a7a7;
}

.careers-block-one .inner-box .title-box .author-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
}

.careers-block-one .inner-box .title-box .option-list{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.careers-block-one .inner-box .title-box .option-list li span{
  position: relative;
  display: block;
  padding-right: 10px;
  color: #a8a7a7;
}

.careers-block-one .inner-box .title-box .option-list li a,
.careers-block-one .inner-box .title-box .option-list li button{
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 36px;
  border: 1px solid #e7e5e5;
  text-align: center;
  border-radius: 50%;
  transition: all 500ms ease;
}

.careers-block-one .inner-box .title-box .option-list li a img,
.careers-block-one .inner-box .title-box .option-list li button img{
  filter: grayscale(100%);
  transition: all 500ms ease;
}

.careers-block-one .inner-box .title-box .option-list li a:hover img,
.careers-block-one .inner-box .title-box .option-list li button:hover img,
.careers-block-one .inner-box .title-box .option-list li button:active img,
.careers-block-one .inner-box .title-box .option-list li button:focus img{
  filter: grayscale(0%);
}

.careers-block-one .inner-box .title-box .option-list li a:hover,
.careers-block-one .inner-box .title-box .option-list li button:hover,
.careers-block-one .inner-box .title-box .option-list li button:active,
.careers-block-one .inner-box .title-box .option-list li button:focus {
  border-color: #f5f4f4;
  background: #f5f4f4;
}

.careers-block-one .inner-box .info-box .info-list li{
  position: relative;
  display: block;
  float: left;
  width: 33.333%;
  padding-left: 28px;
}

.careers-block-one .inner-box .info-box .info-list li .icon-box{
  position: absolute;
  left: 0px;
  top: 0px;
}

.careers-block-one .inner-box .info-box .info-list li span{
  position: relative;
  display: block;
  color: #a8a7a7;
}

.careers-block-one .inner-box .info-box .info-list li:before{
  position: absolute;
  content: '';
  background: #e6e4e4;
  width: 1px;
  height: 45px;
  top: 5px;
  right: 30px;
}

.careers-block-one .inner-box .info-box .info-list li:last-child:before{
  display: none;
}


/** career-details **/

.career-details{
  position: relative;
  padding: 120px 0px;
}

.career-details-content{
  position: relative;
  display: block;
}

.career-details-content .upper-box{
  position: relative;
  display: block;
  padding: 30px;
  background: #f5f4f4;
  margin-bottom: 48px;
}

.career-details-content .upper-box .text{
  position: relative;
  display: block;
  color: #325549;
}

.career-details-content h3{
  display: block;
  font-size: 30px;
  line-height: 38px;
}

.career-details-content .upper-box h3{
  margin-bottom: 7px;
}

.career-details-content .upper-box .location{
  position: relative;
  display: block;
  padding-left: 28px;
}

.career-details-content .upper-box .location img{
  position: absolute;
  left: 0px;
  top: 4px;
}

.career-details-content .upper-box .btn-box{
  position: absolute;
  top: 30px;
  right: 30px;
}

.career-details-content .upper-box .btn-box a{
  position: relative;
  display: inline-block;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  padding: 25px 30px 23px  30px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: var(--title-color);
  text-align: center;
}

.career-details-content .upper-box .btn-box a:hover{
  background: #325549;
  color: #fff;
}

.career-details-content .upper-box .btn-box a i{
  position: relative;
  display: block;
  font-size: 24px;
  color: #325549;
  height: 20px;
  margin-bottom: 4px;
  transition: all 500ms ease;
}

.career-details-content .upper-box .btn-box a:hover i{
  color: #fff;
}

.career-details-content .upper-box .btn-box a span{
  position: relative;
  display: block;
}

.career-details-content .content-one h3{
  margin-bottom: 26px;
}

.career-details-content .content-one p{
  margin-bottom: 18px;
}

.career-details-content .content-one p:last-child{
  margin-bottom: 0px;
}

.career-details-content .content-two h3{
  margin-bottom: 23px;
}

.career-details-content .content-two .list-item li{
  position: relative;
  display: block;
  margin-bottom: 14px;
  padding-left: 25px;
}

.career-details-content .content-two .list-item li:last-child{
  margin-bottom: 0px;
}

.career-details-content .content-two .list-item li:before{
  position: absolute;
  content: '';
  background: #325549;
  width: 10px;
  height: 15px;
  left: 0px;
  top: 5px;
  clip-path: polygon(50% 0%, 90% 50%, 50% 100%, 10% 50%);
}

.career-details-content .content-two .list-item li h5{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  width: 140px;
}

.career-details-content .social-box .social-links{
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.career-details-content .social-box .social-links li{
  position: relative;
  display: inline-block;
}

.career-details-content .social-box .social-links li a{
  position: relative;
  display: flex;
  align-items: center;
  width: 170px;
  justify-content: center;
  font-size: 17px;
  line-height: 26px;
  font-family: var(--text-font);
  color: #fff;
  gap: 10px;
  background: #3b5999;
  padding: 13px 30px;
}

.career-details-content .social-box .social-links li:nth-child(2) a{
  background: #55acee;
}

.career-details-content .social-box .social-links li:nth-child(3) a{
  background: #dd4b39;
}

.career-details-content .social-box .social-links li:nth-child(4) a{
  background: #0077b5;
}

.career-sidebar{
  position: relative;
  display: block;
}

.career-sidebar .upload-box{
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.career-sidebar .upload-box label{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: #fff;
  font-weight: 700;
  background: var(--secondary-color);
  padding: 17px 30px;
  cursor: pointer;
}

.career-sidebar .upload-box label i{
  position: relative;
  display: inline-block;
  font-size: 24px;
  height: 20px;
  color: #325549;
}

.career-sidebar .upload-box input{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 999;
}

.career-sidebar .info-box{
  position: relative;
  display: block;
  background: #fff;
  padding: 11px 30px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
  margin-bottom: 30px;
}

.career-sidebar .info-box .info-list li{
  position: relative;
  display: block;
  border-bottom: 1px solid #e6e4e4;
  padding: 13px 0px;
}

.career-sidebar .info-box .info-list li:last-child{
  border-bottom: none;
}

.career-sidebar .info-box .info-list li h5{
  display: block;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 4px;
}

.career-sidebar .support-box{
  position: relative;
  display: block;
  background: var(--secondary-color);
  padding: 40px 30px;
}

.career-sidebar .support-box .image-box{
  position: relative;
  display: block;
  margin-right: 20px;
}

.career-sidebar .support-box .image-box img{
  width: 100%;
}

.career-sidebar .support-box .lower-content{
  position: relative;
  padding-top: 33px;
}

.career-sidebar .support-box .lower-content .big-text{
  position: absolute;
  right: -8px;
  bottom: 95px;
  font-size: 60px;
  line-height: 60px;
  font-family: var(--title-font);
  color: #661d1a;
  font-weight: 800;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.career-sidebar .support-box .lower-content .info-list li{
  position: relative;
  display: block;
  font-size: 17px;
  color: #ceb2ad;
  margin-bottom: 15px;
}

.career-sidebar .support-box .lower-content .info-list li:last-child{
  margin-bottom: 0px;
}

.career-sidebar .support-box .lower-content .info-list li a{
  display: inline-block;
  color: #fff;
}

.career-sidebar .support-box .lower-content .info-list li a:hover{
  color: #325549;
}

.career-sidebar .support-box .lower-content .info-list li span{
  color: #9c6960;
}

.career-sidebar .support-box .lower-content .theme-btn{
  width: 100%;
}

.career-sidebar .support-box .lower-content .theme-btn:hover{
  color: var(--title-color) !important;
}

.career-sidebar .support-box .lower-content .theme-btn:before{
  background: #fff;
}

.faq-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}


/** error-section **/

.error-section{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 260px 0px 230px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section .scroll-text{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
}

.error-section .scroll-text .text-box-one .text-inner,
.error-section .scroll-text .text-box-two .text-inner{
  background: #f5f4f4;
}

.error-section .scroll-text .text-box-one .text-inner,
.error-section .scroll-text .text-box-two .text-inner{
  position: absolute;
  width: max-content;
  padding: 21px 0px;
}

@-moz-keyframes scroll-left {
  0% { -moz-transform: translateX(0%); }
  100% { -moz-transform: translateX(-100%); }
}

@-webkit-keyframes scroll-left {
  0% { -webkit-transform: translateX(0%); }
  100% { -webkit-transform: translateX(-100%); }
}

@-moz-keyframes scroll-right {
  0% { -moz-transform: translateX(0%); }
  100% { -moz-transform: translateX(100%); }
}

@-webkit-keyframes scroll-right {
  0% { -webkit-transform: translateX(0%); }
  100% { -webkit-transform: translateX(100%); }
}

.error-section .scroll-text .text-box-one .text-inner{
  right: 0px;
  top: 0px;
  -moz-animation: scroll-right 190s linear infinite;
  -webkit-animation: scroll-right 190s linear infinite;
  animation: scroll-right 190s linear infinite;
}

.error-section .scroll-text .text-box-two .text-inner{
  left: 0px;
  bottom: 0px;
  -moz-animation: scroll-left 190s linear infinite;
  -webkit-animation: scroll-left 190s linear infinite;
  animation: scroll-left 190s linear infinite;
}

.error-section .scroll-text h4{
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 28px;
  text-transform: capitalize;
  margin: 0px 22px;
  color: #a8a7a7;
}

.error-section .content-box{
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.error-section .content-box h1{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 600px;
  line-height: 500px;
  font-family: var(--title-font);
  font-weight: 700;
  color: transparent;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(-90deg, #f5f4f4, #fefefe 100%);
}

.error-section .content-box .icon-box{
  position: relative;
  display: block;
  margin-bottom: 28px;
}

.error-section .content-box h2{
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 21px;
}

.error-section .content-box p{
  margin-bottom: 35px;
}

.error-section .content-box .theme-btn{
  background: var(--secondary-color);
}

.error-section .content-box .theme-btn:before{
  background: #325549;
}

.error-section .content-box .text-box{
  position: absolute;
  left: 40px;
  top: 40px;
  width: 140px;
  height: 114px;
  text-align: center;
  z-index: 1;
}

.error-section .content-box .text-box .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 140px;
  height: 114px;
  background-repeat: no-repeat;
}

.error-section .content-box .text-box h3{
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  top: 28px;
}

.blog-grid-two .news-block-one .inner-box .content-box .lower-box h2{
  margin-bottom: 12px;
}

.sidebar-page-container .news-block-one .inner-box .content-box .lower-box h2{
  margin-bottom: 15px;
}

.sidebar-page-container .news-block-one .inner-box .content-box .lower-box p{
  margin-bottom: 32px;
}

.blog-list-one .news-block-one .inner-box .content-box{
  padding: 26px 40px 0px 40px;
}

.blog-list-one .news-block-one .inner-box .content-box .lower-box .link-box{
  position: relative;
  padding: 13px 0px;
  z-index: 1;
}

.blog-list-one .news-block-one .inner-box .content-box .lower-box .link-box:before{
  position: absolute;
  content: '';
  background: #f5f4f4;
  width: calc(100% + 80px);
  height: 100%;
  left: -40px;
  top: 0px;
  z-index: -1;
}

.blog-list-one .news-block-one .inner-box{
  box-shadow: none;
  margin-bottom: 50px;
}

.blog-list-one .news-block-one .inner-box .content-box{
  box-shadow: 0px -50px 50px 0px rgba(0, 0, 0, 0.10);
}

.blog-sidebar{
  position: relative;
  display: block;
  background: #f5f4f4;
  padding: 40px 30px 30px 30px;
}

.blog-sidebar .search-widget .form-group{
  position: relative;
  margin-bottom: 0px;
}

.blog-sidebar .search-widget .form-group input[type='search']{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background: #fff;
  border: 1px solid #fff;
  font-size: 17px;
  color: #a8a7a7;
  padding: 10px 60px 10px 20px;
  transition: all 500ms ease;
}

.blog-sidebar .search-widget .form-group input:focus{
  border-color: #325549;
}

.blog-sidebar .search-widget .form-group button[type='submit']{
  position: absolute;
  top: 16px;
  right: 20px;
  cursor: pointer;
}

.blog-sidebar .widget-title{
  position: relative;
  display: block;
  padding-bottom: 13px;
  border-bottom: 1px solid #e2e0e0;
  margin-bottom: 28px;
}

.blog-sidebar .widget-title h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  padding-left: 29px;
}

.blog-sidebar .widget-title h3:before{
  position: absolute;
  content: '';
  background: #325549;
  width: 9px;
  height: 18px;
  left: 0px;
  top: 7px;
  clip-path: polygon(0% 0%, 100% 50%, 100% 50%, 0% 100%, 0% 0%);
}

.blog-sidebar .widget-title h3:after{
  position: absolute;
  content: '';
  background: #ed9fa2;
  height: 9px;
  width: 18px;
  left: 0px;
  top: 7px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
}

.blog-sidebar .category-widget .category-list li{
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.blog-sidebar .category-widget .category-list li:before{
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-214.png);
  width: 18px;
  height: 14px;
  top: 5px;
  right: 0px;
  background-repeat: no-repeat;
  transition: all 500ms ease;
}

.blog-sidebar .category-widget .category-list li:hover:before{
  opacity: 0;
}

.blog-sidebar .category-widget .category-list li:last-child{
  margin-bottom: 0px;
}

.blog-sidebar .category-widget .category-list li a{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--title-color);
}

.blog-sidebar .category-widget .category-list li a img{
  opacity: 0;
  transition: all 500ms ease;
}

.blog-sidebar .category-widget .category-list li a:hover{
  color: #325549;
}

.blog-sidebar .category-widget .category-list li a:hover img{
  opacity: 1;
}

.blog-sidebar .post-widget .post{
  position: relative;
  display: block;
  padding: 0px 0px 0px 90px;
  margin-bottom: 20px;
  min-height: 118px;
}

.blog-sidebar .post-widget .post:last-child{
  margin-bottom: 0px;
}

.blog-sidebar .post-widget .post .post-thumb{
  position: absolute;
  left: 0px;
  top: 7px;
  width: 70px;
  height: 70px;
  background: var(--secondary-color);
  overflow: hidden;
}

.blog-sidebar .post-widget .post .post-thumb img{
  width: 100%;
  transition: all 500ms ease;
}

.blog-sidebar .post-widget .post:hover .post-thumb img{
  opacity: 0.1;
}

.blog-sidebar .post-widget .post .post-thumb a{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0,0);
  z-index: 2;
}

.blog-sidebar .post-widget .post .post-thumb a img{
  opacity: 1 !important;
}

.blog-sidebar .post-widget .post:hover .post-thumb a{
  transform: translate(-50%,-50%) scale(1,1);
}

.blog-sidebar .post-widget .post h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 8px;
}

.blog-sidebar .post-widget .post h4 a{
  display: inline-block;
  color: var(--title-color);
}

.blog-sidebar .post-widget .post h4 a:hover{
  color: #325549;
}

.blog-sidebar .post-widget .post h5{
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #a8a7a7;
  padding-left: 25px;
}

.blog-sidebar .post-widget .post h5 img{
  position: absolute;
  left: 0px;
  top: 5px;
}

.blog-sidebar .tags-widget .tags-list{
  margin: 0px -5px;
}

.blog-sidebar .tags-widget .tags-list li{
  position: relative;
  display: inline-block;
  float: left;
  margin: 0px 5px 10px 5px;
}

.blog-sidebar .tags-widget .tags-list li a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  color: #545151;
  font-weight: 500;
  background: #fff;
  padding: 7px 21px;
}

.blog-sidebar .tags-widget .tags-list li a:hover{
  color: #fff;
  background: #325549;
}

.sidebar-page-container .news-block-one.style-two .inner-box{
  padding-left: 300px;
  min-height: 254px;
  margin-bottom: 40px;
}

.sidebar-page-container .news-block-one.style-two .inner-box .content-box{
  padding-top: 26px;
}

.page-title h2{
  display: block;
  font-size: 48px;
  line-height: 56px;
  color: #fff;
  margin-bottom: 83px;
}

.blog-details-content{
  position: relative;
  display: block;
}

.blog-details-content .news-block-one .inner-box .upper-box .option-list{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-details-content .news-block-one .inner-box .upper-box .option-list li span{
  position: relative;
  display: block;
  padding-right: 10px;
  color: #a8a7a7;
}

.blog-details-content .news-block-one .inner-box .upper-box .option-list li a,
.blog-details-content .news-block-one .inner-box .upper-box .option-list li button{
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 36px;
  border: 1px solid #e7e5e5;
  text-align: center;
  border-radius: 50%;
  transition: all 500ms ease;
}

.blog-details-content .news-block-one .inner-box .upper-box .option-list li a img,
.blog-details-content .news-block-one .inner-box .upper-box .option-list li button img{
  filter: grayscale(100%);
  transition: all 500ms ease;
}

.blog-details-content .news-block-one .inner-box .upper-box .option-list li a:hover img,
.blog-details-content .news-block-one .inner-box .upper-box .option-list li button:hover img,
.blog-details-content .news-block-one .inner-box .upper-box .option-list li button:active img,
.blog-details-content .news-block-one .inner-box .upper-box .option-list li button:focus img{
  filter: grayscale(0%);
}

.blog-details-content .news-block-one .inner-box .upper-box .option-list li a:hover,
.blog-details-content .news-block-one .inner-box .upper-box .option-list li button:hover,
.blog-details-content .news-block-one .inner-box .upper-box .option-list li button:active,
.blog-details-content .news-block-one .inner-box .upper-box .option-list li button:focus {
  border-color: #f5f4f4;
  background: #f5f4f4;
}

.blog-details-content .news-block-one .inner-box .upper-box .left-column{
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
}

.blog-details-content .news-block-one .inner-box .upper-box .left-column .post-date:before{
  position: absolute;
  content: '';
  background: #e6e4e4;
  width: 1px;
  height: calc(100% - 4px);
  top: 2px;
  right: -25px;
}

.blog-details-content .news-block-one .inner-box .content-box .upper-box{
  padding-bottom: 0px;
  border-bottom: none;
}

.blog-details-content .news-block-one .inner-box{
  box-shadow: none;
}

.blog-details-content .news-block-one .inner-box .content-box{
  padding: 0px;
}

.blog-details-content .content-one .image-box{
  position: relative;
  display: block;
  margin-bottom: 42px;
}

.blog-details-content .content-one .image-box img{
  width: 100%;
}

.blog-details-content .content-one .text-box p:first-child{
  padding-left: 60px;
}

.blog-details-content .content-one .text-box p:first-child span{
  position: absolute;
  left: 0px;
  top: 6px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  background: #325549;
}

.blog-details-content .content-one blockquote{
  position: relative;
  display: block;
  background: #f5f4f4;
  padding: 25px 30px 18px 30px;
  margin-bottom: 44px;
}

.blog-details-content .content-one blockquote p{
  position: relative;
  display: block;
  padding-left: 67px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  padding-bottom: 23px;
  border-bottom: 1px solid #e3e1e1;
  margin-bottom: 19px;
}

.blog-details-content .content-one blockquote p img{
  position: absolute;
  left: 0px;
  top: 6px;
}

.blog-details-content .content-one blockquote .lower-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-details-content .content-one blockquote .lower-box h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  padding-left: 25px;
}

.blog-details-content .content-one blockquote .lower-box h4 img{
  position: absolute;
  left: 0px;
  top: 7px;
}

.blog-details-content .content-one blockquote .lower-box a{
  position: relative;
  display: inline-block;
  font-family: var(--text-font);
  color: #545151;
}

.blog-details-content .content-one blockquote .lower-box a:hover{
  color: #325549;
}

.blog-details-content h2{
  display: block;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 23px;
}

.blog-details-content .content-two .single-item{
  position: relative;
  margin-bottom: 25px;
}

.blog-details-content .content-two .single-item h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  padding-left: 30px;
  margin-bottom: 16px;
}

.blog-details-content .content-two .single-item h3 img{
  position: absolute;
  left: 0px;
  top: 7px;
}

.blog-details-content .content-three p{
  margin-bottom: 22px;
}

.blog-details-content .content-three .list-item li{
  position: relative;
  display: block;
  padding-left: 35px;
  margin-bottom: 14px;
}

.blog-details-content .content-three .list-item li:last-child{
  margin-bottom: 0px;
}

.blog-details-content .content-three .list-item li img{
  position: absolute;
  left: 0px;
  top: 7px;
}

.blog-details-content .post-tag-option h5{
  font-size: 18px;
  line-height: 26px;
  padding-left: 24px;
  margin-bottom: 17px;
}

.blog-details-content .post-tag-option h5 img{
  position: absolute;
  left: 0px;
  top: 5px;
}

.blog-details-content .post-tag-option .tags-list{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-details-content .post-tag-option .tags-list li a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  color: #545151;
  font-weight: 500;
  background: #f5f4f4;
  padding: 7px 21px;
}

.blog-details-content .post-tag-option .tags-list li a:hover{
  color: #fff;
  background: #325549;
}

.blog-details-content .author-box{
  position: relative;
  padding: 32px 30px 36px 199px;
  border: 1px solid #e3e3e3;
}

.blog-details-content .author-box .thumb-box{
  position: absolute;
  left: 39px;
  top: 39px;
  width: 120px;
}

.blog-details-content .author-box .thumb-box img{
  width: 100%;
}

.blog-details-content .author-box .text{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 26px;
  color: #a8a7a7;
}

.blog-details-content .author-box h3{
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 14px;
}

.blog-details-content .author-box  p{
  margin-bottom: 17px;
}

.blog-details-content .author-box h5{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 26px;
}

.blog-details-content .author-box h5 i{
  font-size: 22px;
  height: 20px;
  color: #325549;
}

.blog-details-content .author-box h5 a{
  display: inline-block;
  color: var(--title-color);
}

.blog-details-content .author-box h5 a:hover{
  color: #325549;
}

.blog-details-content .author-box .social-links{
  position: absolute;
  top: 38px;
  right: 39px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-details-content .author-box .social-links li a{
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 44px;
  border: 1px solid #e3e3e3;
  text-align: center;
  font-size: 18px;
  color: #a9a8a8;
}

.blog-details-content .author-box .social-links li a:hover{
  color: #fff;
  background: #325549;
  border-color: #325549;
}

.blog-details-content .post-nav .post-nav-btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-details-content .post-nav .single-btn h5{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 26px;
  color: #a8a7a7;
  margin-bottom: 12px;
}

.blog-details-content .post-nav .single-btn h5 a{
  display: inline-block;
  color: #a8a7a7;
}

.blog-details-content .post-nav .single-btn h5 a:hover{
  color: #325549;
}

.blog-details-content .post-nav .single-btn h5 i{
  font-size: 22px;
  height: 20px;
}

.blog-details-content .post-nav .single-btn:first-child h5 i{
  display: inline-block;
  transform: rotate(180deg);
}

.blog-details-content .post-nav .single-btn:last-child h5{
  justify-content: right;
}

.blog-details-content .post-nav .single-btn h4{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 28px;
}

.blog-details-content .post-nav .single-btn h4 a{
  display: inline-block;
  color: var(--title-color);
}

.blog-details-content .post-nav .single-btn h4 a:hover{
  color: #325549;
}

.blog-details-content .post-nav .btn-box a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-size: 18px;
  line-height: 26px;
  color: var(--title-color);
  font-weight: 700;
  background: #f5f4f4;
  padding: 17px 30px;
}

.blog-details-content .post-nav .btn-box a:hover{
  color: #325549;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.blog-details-content .comment-box .comment{
  position: relative;
  display: block;
  padding-left: 100px;
}

.blog-details-content .comment-box .comment .image-box{
  position: absolute;
  left: 0px;
  top: 6px;
  width: 70px;
}

.blog-details-content .comment-box .comment .title-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.blog-details-content .comment-box .comment .title-box h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
}

.blog-details-content .comment-box .comment .title-box .post-date{
  position: relative;
  display: block;
  font-size: 17px;
  color: #a8a7a7;
}

.blog-details-content .comment-box .comment p{
  margin-bottom: 11px;
}

.blog-details-content .comment-box .comment h5{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-details-content .comment-box .comment h5 a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  color: var(--title-color);
  font-weight: 700;
}

.blog-details-content .comment-box .comment h5 a:hover{
  color: #325549;
}

.blog-details-content .comment-box .comment{
  margin-bottom: 24px;
}

.blog-details-content .comment-box .comment:last-child{
  margin-bottom: 0px;
}

.blog-details-content .comment-box h2{
  margin-bottom: 29px;
}

.blog-details-content .comment-form-area .form-inner .form-group{
  position: relative;
  margin-bottom: 30px;
}

.blog-details-content .comment-form-area .form-inner .form-group:last-child{
  margin-bottom: 0px;
}

.blog-details-content .comment-form-area .form-inner .form-group input[type='text'],
.blog-details-content .comment-form-area .form-inner .form-group input[type='email'],
.blog-details-content .comment-form-area .form-inner .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border: solid;
  border-width: 1px;
  border-color: #e6e4e4;
  font-size: 17px;
  color: #a8a7a7;
  padding: 10px 20px;
  transition: all 500ms ease;
}

.blog-details-content .comment-form-area .form-inner .form-group textarea{
  height: 120px;
  resize: none;
  padding-top: 15px;
}

.blog-details-content .comment-form-area .form-inner .form-group input:focus,
.blog-details-content .comment-form-area .form-inner .form-group textarea:focus{
  border-color: #325549;
}

.blog-details-content .comment-form-area .group-title{
  margin-bottom: 32px;
}

.blog-details-content .comment-form-area .group-title h2{
  margin-bottom: 7px;
}

.blog-details-content .comment-form-area .check-box-two label{
  color: #545151;
  font-size: 17px;
  font-weight: 400;
}

.blog-details-content .comment-form-area .check-box-two label:before{
  background: #f5f4f4;
  border-color: #e6e4e4;
  border-radius: 4px;
}


/** appointment-section **/

.appointment-section{
  position: relative;
}

.appointment-section .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.appointment-section .bg-layer:before{
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(0deg, #550401 50%, rgba(85,4,1,0.0) 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.appointment-section .appointment-form{
  position: relative;
  background: #fff;
  max-width: 570px;
  width: 100%;
  padding: 43px 50px 50px 50px;
}

.appointment-section .appointment-form .form-group{
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.appointment-section .appointment-form .form-group label{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  margin-bottom: 12px;
}

.appointment-section .appointment-form .form-group input[type='text'],
.appointment-section .appointment-form .form-group input[type='email']{
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  background: #f5f4f4;
  border: 1px solid #f5f4f4;
  font-size: 17px;
  color: #a8a7a7;
  padding: 10px 20px;
  transition: all 500ms ease;
}

.appointment-section .appointment-form .form-group .icon-box{
  position: absolute;
  right: 20px;
  bottom: 16px;
  filter: grayscale(100%);
  z-index: 1;
}

.appointment-section .appointment-form .form-group input:focus{
  background: transparent;
  border-color: #e6e4e4;
}

.appointment-section .appointment-form .theme-btn{
  width: 100%;
  background: var(--secondary-color);
}

.appointment-section .appointment-form .theme-btn:before{
  background: #325549;
}

.appointment-section #ptTimeSelectCntr #ptTimeSelectCloseCntr a{
  line-height: 24px !important;
}

.appointment-section .big-text{
  position: absolute;
  left: 90px;
  top: 0px;
  height: 100%;
  text-align: center;
  writing-mode: vertical-lr;
  font-size: 100px;
  line-height: 100px;
  font-family: var(--title-font);
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.10);
  transform: rotate(180deg);
}


/** corporate-section **/

.corporate-section{
  position: relative;
}

.corporate-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
  margin-bottom: 30px;
  padding: 33px 40px 33px 130px;
}

.corporate-block-one .inner-box:before{
  position: absolute;
  content: '';
  background: #f3f2f2;
  width: 120px;
  height: 120px;
  left: 10px;
  top: 10px;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
}

.corporate-block-one .inner-box .icon-box{
  position: absolute;
  left: 40px;
  top: 40px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.10);
  transition: all 500ms ease;
}

.corporate-block-one .inner-box:hover .icon-box{
  background: #325549;
}

.corporate-block-one .inner-box .icon-box .icon{
  position: relative;
  transition: all 500ms ease;
}

.corporate-block-one .inner-box:hover .icon-box .icon{
  opacity: 1;
}

.corporate-block-one .inner-box .icon-box .overlay-icon{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  opacity: 0;
  transition: all 500ms ease;
}

.corporate-block-one .inner-box:hover .icon-box .overlay-icon{
  opacity: 1;
}

.corporate-block-one .inner-box h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
}

.corporate-block-one .inner-box p{
  margin-bottom: 15px;
}

.corporate-block-one .inner-box h5{
  display: block;
  font-size: 18px;
  line-height: 26px;
}

.corporate-block-one .inner-box h5 a{
  display: inline-block;
  color: var(--title-color);
}

.corporate-block-one .inner-box h5 a:hover{
  color: #325549;
}

.corporate-block-one .inner-box h5 span{
  color: #545151;
  font-weight: 400;
}


/** branches-section **/

.branches-section{
  position: relative;
  background: var(--secondary-color);
}

.branches-section .content-box{
  position: relative;
  max-width: 370px;
  width: 100%;
  background: #fff;
  padding: 33px 30px 34px 30px;
}

.branches-section .content-box .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
}

.branches-section .content-box .tab-btns .tab-btn{
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-left: 26px;
  margin-right: 20px;
}

.branches-section .content-box .tab-btns .tab-btn:last-child{
  margin: 0px !important;
}

.branches-section .content-box .tab-btns .tab-btn h4{
  font-size: 18px;
  line-height: 26px;
}

.branches-section .content-box .tab-btns .tab-btn:before{
  position: absolute;
  content: '';
  background: #f5f4f4;
  border: 1px solid #e6e4e4;
  width: 16px;
  height: 16px;
  left: 0px;
  top: 5px;
}

.branches-section .content-box .tab-btns .tab-btn:after{
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  left: 5px;
  top: 10px;
  background: #325549;
  opacity: 0;
  transition: all 500ms ease;
}

.branches-section .content-box .tab-btns .tab-btn.active-btn:after{
  opacity: 1;
}

.branches-section .content-box .inner-box .form-group{
  position: relative;
  margin-bottom: 20px;
}

.branches-section .content-box .inner-box .form-group .icon-box{
  position: absolute;
  top: 12px;
  right: 20px;
  z-index: 1;
}

.branches-section .content-box .inner-box .form-group input[type='text']{
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  background: #f5f4f4;
  border: 1px solid #f5f4f4;
  font-size: 17px;
  color: #a8a7a7;
  padding: 10px 50px 10px 20px;
  transition: all 500ms ease;
}

.branches-section .content-box .inner-box .form-group input:focus{
  border-color: #325549;
}

.branches-section .content-box .inner-box .text{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  color: var(--title-color);
  text-align: center;
  margin-bottom: 20px;
}

.branches-section .content-box .inner-box .link-box a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: var(--title-color);
  padding-left: 26px;
}

.branches-section .content-box .inner-box .link-box a:hover{
  color: #325549;
}

.branches-section .content-box .inner-box .link-box a i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 20px;
  color: #325549;
}

.branches-section .content-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 26px;
}

#ptTimeSelectCntr #ptTimeSelectCloseCntr a{
  line-height: 24px !important;
}

.branches-section .big-text{
  position: absolute;
  left: 90px;
  top: 0px;
  height: 100%;
  text-align: center;
  writing-mode: vertical-lr;
  font-size: 100px;
  line-height: 100px;
  font-family: var(--title-font);
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.10);
  transform: rotate(180deg);
}

.branches-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}

.branches-section .map-inner{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
}

.branches-section .map-inner iframe{
  position: relative;
  width: 100%;
  height: 670px;
}

.branches-section .map-inner .map-content{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 270px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.06);
  padding: 33px 30px;
  z-index: 2;
}

.branches-section .map-inner .map-content h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}

.branches-section .map-inner .map-content p{
  margin-bottom: 7px;
}

.branches-section .map-inner .map-content h5{
  display: block;
  font-size: 18px;
  line-height: 26px;
}

.branches-section .map-inner .map-content h5 a{
  display: inline-block;
  color: var(--title-color);
}

.branches-section .map-inner .map-content h5 a:hover{
  color: #325549;
}


/** contact-section **/

.contact-section{
  position: relative;
}

.contact-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-section .tabs-box{
  position: relative;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
}

.contact-section .tabs-content{
  position: relative;
  padding: 44px 50px 27px 50px;
}

.contact-section .tab-btns .tab-btn{
  position: relative;
  float: left;
  width: 50%;
  text-align: center;
  padding: 16px 20px;
  cursor: pointer;
  border-bottom: 1px solid #e6e4e4;
  border-right: 1px solid #e6e4e4;
}

.contact-section .tab-btns .tab-btn:last-child{
  border-right: none;
}

.contact-section .tab-btns .tab-btn h4{
  font-size: 20px;
  line-height: 28px;
  color: #a8a7a7;
}

.contact-section .tab-btns .tab-btn.active-btn h4{
  color: #325549;
}

.contact-section .tab-btns .tab-btn:before{
  position: absolute;
  content: '';
  background: #325549;
  width: 100%;
  height: 4px;
  left: 0px;
  bottom: -1px;
  transform: scale(0,0);
  transition: all 500ms ease;
}

.contact-section .tab-btns .tab-btn.active-btn:before{
  transform: scale(1,1);
}

.contact-section .form-inner .form-group{
  position: relative;
  margin-bottom: 26px;
}

.contact-section .form-inner .left-column .form-group .icon-box{
  position: absolute;
  right: 20px;
  bottom: 15px;
  z-index: 1;
  filter: grayscale(100%);
}

.contact-section .form-inner .right-column .form-group .icon-box{
  position: absolute;
  top: 53px;
  right: 20px;
  z-index: 1;
  filter: grayscale(100%);
}

.contact-section .form-inner .form-group input[type='text'],
.contact-section .form-inner .form-group input[type='email'],
.contact-section .form-inner .form-group textarea,
.contact-section .form-inner .form-group .nice-select{
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  background: #f5f4f4;
  border: 1px solid #f5f4f4;
  font-size: 17px;
  color: #a8a7a7;
  padding: 10px 20px;
  transition: all 500ms ease;
}

.contact-section .form-inner .form-group input:focus{
  background: transparent;
  border-color: #e6e4e4;
  color: #545151;
}

.contact-section .form-inner .form-group label{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  margin-bottom: 13px;
}

.contact-section .form-inner .form-group .select-box{
  min-height: 56px;
}

.contact-section .form-inner .form-group .select-box .nice-select{
  padding: 0px 20px;
  line-height: 56px;
}

.contact-section .form-inner .form-group .select-box .nice-select:before{
  right: 20px;
}

.contact-section .form-inner .form-group textarea{
  height: 342px;
  resize: none;
  background: #f5f4f4;
  border-color: #f5f4f4;
}

.contact-section .form-inner .right-column .form-group{
  margin-bottom: 0px;
}

.contact-section .form-inner .right-column .message-btn{
  position: relative;
  background: #f5f4f4;
  padding: 0px 20px 20px 20px;
}

.contact-section .form-inner .right-column .message-btn .theme-btn{
  background: var(--secondary-color);
  width: 100%;
}

.contact-section .form-inner .right-column .message-btn .theme-btn:before{
  background: #325549;
}


/** support-section **/

.support-section{
  position: relative;
}

.support-section .inner-container {
  overflow-y: hidden;
  position: relative;
  width: 100%;
  border: 1px solid #e6e4e4;
}

.support-section .table-outer {
  min-width: 1150px;
  width: 100%;
}

.support-section .table-outer table{
  position: relative;
  width: 100%;
}

.support-section .table-outer thead th{
  position: relative;
  font-size: 20px;
  line-height: 28px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  background: #f5f4f4;
  padding: 15px 40px;
  border-bottom: 1px solid #e6e4e4;
  border-right: 1px solid #e6e4e4;
}

.support-section .table-outer thead th:last-child{
  border-right: none;
}

.support-section .table-outer tbody td{
  position: relative;
  border-bottom: 1px solid #e6e4e4;
  border-right: 1px solid #e6e4e4;
}

.support-section .table-outer tbody td:last-child{
  border-right: none;
}

.support-section .table-outer tbody td h5{
  font-size: 18px;
  line-height: 26px;
  padding: 0px 40px;
}

.support-section .table-outer tbody td span{
  position: relative;
  display: block;
  width: 100%;
  border-bottom: 1px solid #e6e4e4;
  padding: 18px 40px;
  font-size: 17px;
  line-height: 26px;
  color: var(--text-color);
}

.support-section .table-outer tbody td span a{
  display: inline-block;
  color: var(--text-color);
}

.support-section .table-outer tbody td span a:hover{
  color: #325549;
}

.support-section .table-outer tbody td span:last-child{
  border-bottom: none;
}

.support-section .more-text{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0px;
}

.support-section .more-text h5 i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 20px;
  color: #325549;
}

.support-section .more-text h5{
  font-size: 18px;
  line-height: 26px;
  padding-left: 25px;
}

.support-section .more-text h5 a{
  display: inline-block;
  color: #325549;
  text-decoration: underline;
}

.banking-service .content-box .inner-box .list-style-one li{
  min-height: 45px;
}


.custom-banking.home-3 .content-box .title-box .icon-box img,
.custom-banking.home-3 .content-box .inner-box .form-inner .form-group .icon-box img{
  filter: grayscale(100%);
}

.logobox
{
  display: none;
}

.header-top
{
  background-color: #e2e3e3;
  padding: 6px;
}
.header-top .top-inner
{
  background-color: #e2e3e3;
}
.logo
{
  margin: 5px;
}

 /* 🔹 Isolate all rules inside .custom-menu-wrapper to avoid conflicts */
    .custom-menu-wrapper {
      position: relative;
      z-index: 9999; /* Always on top */
    }

    .custom-menu-wrapper .main-menu {
      background-color: #36584d;
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .custom-menu-wrapper .menu-list {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
      position: relative;
      z-index: 10;
    }

    .custom-menu-wrapper .menu-item {
      position: relative;
    }

    .custom-menu-wrapper .menu-item > a {
      color: #fff !important;
      font-weight: 600;
      text-decoration: none;
     
      font-size: 15px;
      padding: 10px 18px;
      display: block;
      border-right: 1px solid rgba(255, 255, 255, 0.3);
      transition: background 0.3s;
      background: transparent;
    }

    .custom-menu-wrapper .menu-item > a:hover {
      background-color: #000;
    }

    /* 🔹 Dropdown */
    .custom-menu-wrapper .submenu {
      display: none;
      position: absolute;
      left: 0;
      top: 100%;
      background-color: #36584d;
      list-style: none;
      padding: 0;
      margin: 0;
      min-width: 200px;
      border: none;
      z-index: 10000;
    }

    .custom-menu-wrapper .submenu li a {
      color: #fff;
      display: block;
      padding: 10px 15px;
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      font-weight: 300;
    }

    .custom-menu-wrapper .submenu li a:hover {
      background-color: #000;
      color:#fff;
    }

    /* 🔹 Hover for desktop only */
    @media (min-width: 992px) {
      .custom-menu-wrapper .menu-item:hover > .submenu {
        display: block;
      }
    }

    /* 🔹 Mobile view - vertical layout */
    @media (max-width: 991px) {
      .custom-menu-wrapper .menu-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
      }

      .custom-menu-wrapper .menu-item > a {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        width: 100%;
      }

      .custom-menu-wrapper .submenu {
        position: static;
        width: 100%;
      }
    }

    .main-menu {
    float: none;
}

.banner-carousel .slide-item .bg-layer
{
  width: calc(100% + 235px);
  background-position: top;
}
.sbox
{
  visibility: hidden;
}

/* divider between menu & RBI section */
.menu-divider {
    width: 1px;
    height: 20px;
    background: #ccc;
    margin: 0 15px;
}

/* RBI inline menu */
.rbi-inline {
    display: flex;
    align-items: center;
    font-size: 13px;
    gap: 6px;
    color: #333;
}

.rbi-inline a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
}

.rbi-inline a:hover {
    color: #0d6efd;
}

/* RBI KEHTA HAI highlight */
.rbi-inline .highlight {
    font-weight: 600;
    color: #2c7a2c;
}

/* pipe styling */
.rbi-inline span {
    color: #777;
    font-weight: 500;
}

.logoe
{
  display:none;
}

.navbarr
{
  display:none;
}

.main-menu
{

}

.butt2
{
  border:1px solid #36584d;
  color:#fff;
  background-color: #36584d;
}

.bank-notice-bar {
    display: flex;
    align-items: center; /* vertical center */
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    height: 45px;
    position: relative;
    background-color: floralwhite;
}

/* LEFT TITLE */
.notice-title {
    background-color: #000; /* blue background */
    color: #fff;
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 100%;
    font-weight: bold;
    white-space: nowrap;
    position: relative;  /* enable z-index */
    z-index: 2;          /* title above marquee */
}

/* RIGHT SCROLLING */
.notice-marquee {
   
    color: #000;
    flex: 1;
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding-left: 100%;
    animation: scrollNotice 20s linear infinite;
    height: 100%;
    position: relative; /* enable z-index */
    z-index: 1;         /* behind title */
}

/* Individual notice */
.notice-item {
    margin: 0 10px;
    display: flex;
    align-items: center;
}

/* Divider between notices */
.divider {
    margin: 0 10px;
    color: #999;
}

/* Pause on hover */
.notice-marquee:hover {
    animation-play-state: paused;
}

/* Scroll Animation */
@keyframes scrollNotice {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}


/* FIELDSET BOX */
.bank-fieldset {
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    padding: 20px;
    background: #f9fcff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    height: 100%;
}

/* LEGEND (HEADING) */
.bank-legend {
    padding: 6px 18px;
    background: #325549;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid #325549;
}

/* FORM */
.bank-form input,
.bank-form select {
    font-size: 14px;
}

/* NOTIFICATION */
.bank-notification {
    max-height: 260px;
    overflow-y: auto;
}

.bank-notification ul {
    padding-left: 18px;
}

.bank-notification li {
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
}

.bank-notification li::before {
    content: "✔";
    color: #ffd400;
    margin-right: 6px;
    font-weight: bold;
}

/* LINK */
.bank-link {
    font-size: 13px;
    text-decoration: underline;
}

.bank-form-advance .form-group {
    position: relative;
    margin-bottom: 14px;
}

.bank-form-advance .form-group i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #777;
    font-size: 14px;
}

.bank-form-advance .form-control {
    padding-left: 42px;
    height: 44px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    background: #fff;
    transition: 0.3s;
}

.bank-form-advance .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.12rem rgba(13,110,253,.25);
}

/* BUTTON */
.bank-btn {
    background: #325549;
    border: none;
    color: #fff;
    font-size: 15px;
    padding: 10px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.bank-btn:hover {
    background: linear-gradient(135deg, #003f9e, #0d6efd);
    transform: translateY(-1px);
}

.form-control
{
  display: block !important;
}
.nice-select
{
  display:none !important;
}

.bank-notification {
    height: 270px;              /* visible area */
    overflow: hidden;
    position: relative;
    background: #fff;
    padding: 10px 15px;
}

.scroll-up {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: scrollUp 12s linear infinite;
}

.scroll-up li {
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    border-bottom: 1px dashed #e0e0e0;
}

/* Hover par scroll stop */
.bank-notification:hover .scroll-up {
    animation-play-state: paused;
}

/* Animation */
@keyframes scrollUp {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}


body{
  transform-origin: top center;
  transition: transform 0.2s ease;
}

.header-top .info-list li
{
  font-size: 14px;
}

#chat-btn{
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 9999;
}

#chat-btn img{
  width: 60px;
  cursor: pointer;
}

#chat-box{
  display: none;
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 340px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  border-radius: 10px;
  z-index: 9998;
  overflow: hidden;
}

.chat-header{
  background: #325549;
  color: #fff;
  padding: 10px 12px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#close-chat{
  cursor: pointer;
  font-size: 18px;
}

.chat-form{
  padding: 15px;
}

.chat-form input,
.chat-form textarea{
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.chat-form textarea{
  height: 80px;
  resize: none;
}

.chat-form button{
  width: 100%;
  padding: 10px;
  background: #325549;
  border: none;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

/* SECTION */
.popular-products {
  background: linear-gradient(180deg, #f4f9f8, #ffffff);
}

/* CARD */
.product-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  gap: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 22px rgba(0, 0, 0, 0.08),
    0 12px 30px rgba(50, 85, 73, 0.18);
  transition: all 0.4s ease;
}

/* VISITING CARD STRIP */
.product-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #325549, #4f7c6d);
}

/* HOVER EFFECT */
.product-item:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.12),
    0 25px 55px rgba(50, 85, 73, 0.28);
}

/* FIXED IMAGE CONTAINER */
.product-img {
 
  height: 170px;              /* frame height */
  flex-shrink: 0;            /* prevent shrink */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;          /* crop extra */
  border-radius: 14px;
  background: #f1f6f5;
  box-shadow: 0 6px 18px rgba(50, 85, 73, 0.25);
}

/* IMAGE */
.product-img img {
  width: auto;               /* maintain original ratio */
  height: 100%;              /* fit container height */
  object-fit: contain;       /* no crop */
  display: block;
  border-radius: 10px;
}


/* CONTENT */
.product-content h5 {
  font-size: 17px;
  font-weight: 700;
  color: #325549;
  margin-bottom: 6px;
  letter-spacing: 0.4px;
}

.product-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 6px;
}

.product-content p strong {
  color: #000;
  font-weight: 600;
}

/* LEARN MORE */
.learn-more {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #325549;
  text-decoration: none;
  gap: 6px;
  transition: all 0.3s ease;
}

.learn-more span {
  transition: transform 0.3s ease;
}

.learn-more:hover {
  color: #1e3a32;
}

.learn-more:hover span {
  transform: translateX(4px);
}

/* MOBILE */
@media (max-width: 576px) {
  .product-item {
    flex-direction: column;
    text-align: left;
  }

  .product-img img {
    width: 100%;
    height: 100%;
  }
}


.popular-products
{
  background-image: url(../images/home-back.jpg);
  background-repeat: no-repeat;
}

.loan-rates-section {
  
  padding: 60px 0;
  position: relative;
  border-radius: 0px;
  /*box-shadow: 0 4px 15px rgba(0,0,0,0.05);*/
  background-image: url(../images/backk.jpg);
}

.loan-rates-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background-image: url(../images/reate.png);
  /*box-shadow: 0 12px 15px -6px rgba(50, 85, 73, 0.3);*/
  margin-top: -100px;
}

.loan-item {
  flex: 1 1 0;
  text-align: center;
  padding: 20px 10px;
}

.loan-item h3 {
  font-size: 24px;
  color: #fff;
  margin: 10px 0 5px 0;
}

.loan-item h3 span {
  font-size: 14px;
  color: #fff;
}

.loan-item p {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.loan-icon img {
  width: 50px;
  height: 50px;
}

/* Divider */
.divider {
  width: 1px;
  background: #e0e0e0;
  height: 80px;
  margin: 0 10px;
}

/* Note */
.note {
  text-align: right;
  font-size: 12px;
  margin-top: 10px;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .loan-rates-row {
    flex-wrap: wrap;
  }
  .divider {
    display: none;
  }
  .loan-item {
    flex: 1 1 45%;
    margin-bottom: 20px;
  }
}



.trustt
{
  color:#fff;
}

/* ===== FULL WIDTH BACKGROUND ===== */
.clients-section {
  width: 100%;
  background: linear-gradient(180deg, #f6fbfa, #eef5f3);
  padding: 70px 0;
}

/* INNER CONTAINER */
.clients-section .inner-container {
  max-width: 1300px;
  margin: auto;
  background: #dfefea;
  border-radius: 18px;
  padding: 40px 30px;
  box-shadow:
    0 14px 0 rgba(50, 85, 73, 0.18),
    0 30px 45px rgba(0, 0, 0, 0.08);
}

/* ===== SERVICE ITEMS – NO BOX FEEL ===== */
.service-item {
  position: relative;
  padding: 30px 20px;
  text-align: center;
  background: transparent;
}

/* ICON */
.service-item i {
  font-size: 30px;
  color: #325549;
  margin-bottom: 12px;
}

/* TITLE */
.service-item h5 {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

/* ===== VERTICAL DIVIDER ===== */
.service-item::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(50, 85, 73, 0.4),
    transparent
  );
}

/* REMOVE DIVIDER FROM LAST ITEM */
.owl-item:last-child .service-item::after {
  display: none;
}

/* ===== HOVER EFFECT (SOFT) ===== */
.service-item:hover i {
  transform: translateY(-4px);
}

.service-item i {
  transition: transform 0.3s ease;
}

/* ===== SECTION TITLE ===== */
.clients-section .sec-title h2 {
  color: #325549;
  font-weight: 700;
}

.clients-section .sub-title {
  color: #325549;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
  .service-item::after {
    display: none;
  }

  .service-item {
    border-bottom: 1px solid rgba(50, 85, 73, 0.2);
  }

  .owl-item:last-child .service-item {
    border-bottom: none;
  }
}

.bank-serv
{
  color:#ffff;
}

.sec-title h2
{
  font-size: 30px;
}
#bannerr1
{
  height: 556px;
}

.offers-news{
  display:flex;
  gap:20px;
  background:#f5f5f5;
  padding:20px;
  height:400px;
}

.offers-box, .news-box{
  background:#fff;
  width:50%;
  border-radius:4px;
  overflow:hidden;
}

.box-header{
  background:#325549;
  color:#fff;
  padding:12px 15px;
  font-weight:600;
  position:relative;
}

.box-header .arrow{
  position:absolute;
  right:10px;
  background:#b32018;
  padding:6px 10px;
  border-radius:0 0 0 10px;
}

.offers-scroll{
  height:340px;
  overflow:hidden;
}

.offer-item{
  display:flex;
  gap:10px;
  padding:15px;
  border-bottom:1px solid #eee;
}

.offer-item img{
  width:70px;
  height:70px;
  object-fit:cover;
}

.offer-item p{
  margin:5px 0 0;
  font-size:14px;
  color:#555;
}

/* NEWS SLIDER */
.news-slider{
  height:240px;
  position:relative;
  padding:40px;
  text-align:center;
}

.news{
  display:none;
  font-size:22px;
  color:#555;
  font-family:serif;
}

.news.active{
  display:block;
  animation:fade 1s;
}

@keyframes fade{
  from{opacity:0}
  to{opacity:1}
}

.dots{
  position:absolute;
  bottom:20px;
  width:100%;
}

.dot{
  height:10px;
  width:10px;
  background:#ccc;
  display:inline-block;
  border-radius:50%;
  margin:0 4px;
}

.dot.active{
  background:#000;
}

#iconn2
{
  font-size: 22px;
  color:#e82138;
}
.investment-block-one .inner-box .theme-btn
{
  color:#fff !important;
}
.investment-block-one
{
  padding: 101px 50px 50px 50px;
}
.investment-block-two .inner-box .big-text
{
  font-size: 32px;
}

.about-bank{
  padding:70px 0;
  background-image:url(../images/backk.jpg);
  font-family: 'Segoe UI', sans-serif;
  background-repeat: no-repeat;
  margin-top: -100px;
}

.section-tag{
  font-size:13px;
  letter-spacing:2px;
  color:#0a8f3d;
  font-weight:600;
}

.about-text h2{
  font-size:34px;
  font-weight:700;
  margin:10px 0 20px;
}

.about-text p{
  font-size:15px;
  color:#555;
  line-height:1.8;
}

.read-more-btn{
  display:inline-block;
  margin-top:20px;
  padding:10px 30px;
  border:1px solid #325549;
  color:#000;
  font-weight:600;
  text-decoration:none;
}

.read-more-btn:hover{
  background:#325549;
  color:#fff;
}

/* PROFILE SECTION */
.profile-wrap{
  display:flex;
  gap:30px;
  justify-content:center;
}

.profile-card{
  background:#f4fbfb;
  padding:25px;
  text-align:center;
  border-radius:6px;
  width:260px;
  box-shadow:0 0 10px rgba(0,0,0,0.05);
}

.profile-img{
  background:#e1f1f1;
  padding:15px;
  border-radius:4px;
}

.profile-img img{
  width:100%;
  border-radius:4px;
}

.profile-card h4{
  margin-top:15px;
  font-size:18px;
}

.designation{
  display:block;
  color:#0a8f3d;
  font-weight:600;
  margin-top:5px;
}

.designation.red{
  color:#c62828;
}

.profile-card small{
  display:block;
  color:#777;
  margin-top:5px;
}

/* RESPONSIVE */
@media(max-width:991px){
  .profile-wrap{
    flex-direction:column;
  }
}

.bank-points{
  margin-top:15px;
  padding-left:18px;
}

.bank-points li{
  font-size:15px;
  color:#444;
  margin-bottom:8px;
  line-height:1.6;
}


/* ===== TABLET (991px & below) ===== */
@media (max-width: 991px){

  .about-bank{
    padding:50px 0;
  }

  .about-text h2{
    font-size:28px;
  }

  .about-text p{
    font-size:14px;
  }

  .profile-wrap{
    flex-direction:row;
    gap:20px;
  }

  .profile-card{
    width:230px;
    padding:20px;
  }
}

/* ===== MOBILE (768px & below) ===== */
@media (max-width: 768px){

  .about-bank{
    padding:40px 0;
  }

  .section-tag{
    font-size:12px;
  }

  .about-text{
    margin-bottom:30px;
  }

  .about-text h2{
    font-size:24px;
    line-height:1.3;
  }

  .about-text p{
    font-size:14px;
    line-height:1.7;
  }

  .read-more-btn{
    padding:8px 22px;
    font-size:14px;
  }

  .profile-wrap{
    flex-direction:column;
    align-items:center;
    gap:25px;
  }

  .profile-card{
    width:100%;
    max-width:300px;
  }
}

/* ===== SMALL MOBILE (480px & below) ===== */
@media (max-width: 480px){

  .about-text h2{
    font-size:22px;
  }

  .profile-card{
    padding:18px;
  }

  .profile-card h4{
    font-size:16px;
  }

  .designation{
    font-size:14px;
  }

  .profile-card small{
    font-size:13px;
  }
}

/*.footer-style-two
{
  background: #f1f1f1;
}*/
.social-icons{
  display:flex;
  gap:12px;
}

.social-icons a{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  border:1px solid rgba(255,255,255,0.4);
  font-size:16px;
  transition:all 0.3s ease;
  text-decoration:none;
}

.social-icons a:hover{
  background:#fff;
  color:#0a3a67; /* bank blue */
  transform:translateY(-3px);
}

.footer-style-two .links-widget .links-list li a
{
  color:#fff;
}
.add1
{
  color:#fff;
}
.footer-style-two .widget-section
{
  padding: 93px 0px 48px 0px;
}

/* NEW FOREX CARD */
.forex-card{
  background:#ffffff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:all 0.3s ease;
  text-align:center;
}

.forex-card:hover{
  transform:translateY(-6px);
}

/* IMAGE */
.forex-img img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}

/* CONTENT */
.forex-content{
  padding:18px 15px 22px;
}

.forex-content h4{
  font-size:18px;
  font-weight:700;
  margin-bottom:6px;
  color:#0a3a67;
}

.forex-content p{
  font-size:14px;
  color:#666;
}
.exchange-section .tab-btn-box .tab-btns li
{
  color:#000;
}

.vertical-social{
  position:fixed;
  right:0px;
  top:50%;
  transform:translateY(-50%);
  z-index:999;
  display:flex;
  flex-direction:column;
  gap:6px;                 /* thoda sate */
}

/* Common style */
.vertical-social a{
  width:44px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:16px;
  text-decoration:none;
  border-radius:6px;        /* rectangular */
  box-shadow:0 6px 12px rgba(0,0,0,0.25);
  transition:all 0.3s ease;
}

/* Brand colors */
.vertical-social .fb{ background:#1877f2; }
.vertical-social .ig{
  background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}
.vertical-social .tw{ background:#1da1f2; }
.vertical-social .ln{ background:#0a66c2; }

/* Hover effect */
.vertical-social a:hover{
  transform:translateX(-6px);
  box-shadow:0 10px 20px rgba(0,0,0,0.35);
}

.menu-list{
  display:flex;
  gap:10px;
  list-style:none;
  padding:0;
  margin:0;
}

.menu-item{
  position:relative;
}

.menu-item > a{
  padding:14px 6px;
  display:block;
  font-weight:500;
  color:#222;
  text-decoration:none;
}

/* COMMON SUBMENU */
.submenu{
  position:absolute;
  top:0;
  left:100%;
  background:#fff;
  min-width:220px;
  list-style:none;
  padding:10px 0;
  margin:0;
  box-shadow:0 15px 35px rgba(0,0,0,.25);
  border-radius:4px;
  opacity:0;
  visibility:hidden;
  transform:translateX(15px);
  transition:.3s ease;
  z-index:999;
}

/* FIRST LEVEL */
.menu-item:hover > .submenu{
  opacity:1;
  visibility:visible;
  transform:translateX(0);
}

/* SUBMENU ITEMS */
.submenu li a{
  padding:10px 22px;
  display:block;
  color:#333;
  font-weight:400;
  text-decoration:none;
  white-space:nowrap;
}

.submenu li a:hover{
  background:#f2f2f2;
  color:#0a3a67;
}

/* THIRD LEVEL (PRINCIPAL → RIGHT SIDE) */
.submenu .submenu{
  top:0;
  left:100%;
}

/* ARROW INDICATOR */
.menu-item > a::after{
  content:"";
  float:right;
  margin-left:8px;
  font-size:14px;
}

/* REMOVE ARROW FROM LAST LEVEL */
.submenu li a::after{
  content:"";
}

/* MOBILE HIDE */
@media(max-width:768px){
  .submenu{
    display:none;
  }
}

.mobile-menu .nav-logo img
{
  max-width: 100% !important;
}
.sec-title .sub-title
{
  padding-bottom: 0px !important;
}
.product-section
{
  padding: 53px 0px;
}
.loanrate
{
    display:block;
}

.loanrate2
{
    display:none;
}
.logomm2
{
    margin-top:-72px;
    padding-bottom:27px;
}
.footer-style-two .footer-widget .widget-title h3
{
    font-size:20px;
}

.page-title .bg-layer:before
{
    background: -webkit-linear-gradient(0deg, rgb(54 88 77) 50%, rgba(85, 4, 1, 0.0) 75%);
}
.page-title {
    position: relative;
    padding: 71px 0px 0px 0px;
}

.about-bscb {
  background: #f5f7fb;
  padding: 60px 0;
  font-family: 'Segoe UI', sans-serif;
}

.container2 {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  color: #0b3c5d;
  margin-bottom: 10px;
}

.section-header p {
  color: #555;
  font-size: 16px;
}

/* Card Design */
.about-card {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.about-card.bordered {
  border-left: 6px solid #0b3c5d;
}

.about-card.highlight {
  background: linear-gradient(135deg, #0b3c5d, #1e88e5);
  color: #fff;
}

.about-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}



.image-box img {
  width: 100%;
  border-radius: 10px;
  border: 0px solid #eaeaea;
}

/* Founder List */
.founder-list {
  list-style: none;
  padding: 0;
}

.founder-list li {
  padding: 8px 0;
  border-bottom: 1px dashed #ccc;
}

/* Finance Grid */
.finance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.finance-grid div {
  background: rgba(255,255,255,0.15);
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
}

.finance-grid span {
  display: block;
  font-size: 18px;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  #roww {
    flex-direction: column;
  }
}

.page-title h1
{
    font-size:50px;
}
.team-block-one .inner-box .lower-content h3
{
    font-size:20px;
}
.team-block-one .inner-box
{
    height:450px;
}
.teamb
{
    height:auto !important;
}
thead, tbody, tfoot, tr, td, th
{
    padding:8px;
}

.number-section {
  padding: 60px 0;
  background: #f6f8fb;
  font-family: 'Segoe UI', sans-serif;
}

.container5 {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.number-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left Side */
.number-left {
  flex: 1;
}

.number-left h2 {
  font-size: 32px;
  color: #0b3c5d;
  margin-bottom: 10px;
}

.number-left p {
  color: #555;
  font-size: 16px;
}

/* Right Side */
.number-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.number-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #000;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border-left: 6px solid #36584d;
  transition: 0.3s;
}

.number-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Number Circle */
.number {
  width: 40px;
  height: 40px;
  background: #36584d;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

/* Text */
.text {
  flex: 1;
  margin-left: 15px;
  font-size: 18px;
  font-weight: 600;
}

/* Click Here */
.click {
  color: #0b3c5d;
  font-weight: 600;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .number-wrapper {
    flex-direction: column;
  }

  .number-left h2 {
    font-size: 26px;
  }
}

/* Section */
.table-section {
  padding: 40px 15px;
  background: #f4f7fb;
  font-family: 'Segoe UI', sans-serif;
}

.table-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
  color: #0b3c5d;
}

/* Table Wrapper */
.table-responsive-mobile {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  overflow-x: visible;
}

/* Table */
.custom-bank-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.custom-bank-table th,
.custom-bank-table td {
  padding: 10px 12px;
  border: 1px solid #ddd;
  white-space: nowrap;
}

/* Header */
.custom-bank-table thead tr:nth-child(2) th {
  background: #36584d;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.custom-bank-table thead tr:first-child th {
  background: #eaf0f6;
  font-weight: 600;
}

/* Zebra rows */
.custom-bank-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

/* Highlight important rows */
.custom-bank-table tbody tr td strong {
  color: #0b3c5d;
}

/* Center SL No */
.custom-bank-table td:first-child {
  text-align: center;
  font-weight: 600;
}

/* Hover effect */
.custom-bank-table tbody tr:hover {
  background: #eef5ff;
}

/* 🔥 Mobile Horizontal Scroll Only */
@media (max-width: 768px) {
  .table-responsive-mobile {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .custom-bank-table {
    min-width: 900px; /* forces scroll */
  }
}

/* Optional: Hide scrollbar but allow swipe */
.table-responsive-mobile::-webkit-scrollbar {
  height: 6px;
}

.table-responsive-mobile::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}


/* Banner */
.sa-banner{
  background:linear-gradient(135deg,#0c3b63,#1f78b4);
  padding:70px 20px;
  color:#fff;
  text-align:center;
}

.sa-banner h1{
  font-size:42px;
  margin-bottom:10px;
}

.sa-banner p{
  font-size:17px;
  opacity:.9;
}

/* Section */
.sa-section{
  padding:60px 20px;
  max-width:100%;
  margin:auto;
  background:azure;
}

.sa-light-bg{
  background:#eef4fa;
  border-radius:20px;
}

.sa-heading{
  /*text-align:center;*/
  font-size:30px;
  margin-bottom:35px;
  color:#0c3b63;
}

/* Cards */
.sa-card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:25px;
}

.sa-card{
  background:#fff;
  padding:18px 20px;
  text-align:center;
  font-weight:600;
  border-radius:15px;
  border:1px solid #e2e8f0;
  transition:.3s;
}

.sa-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}

/* Features */
.sa-feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.sa-feature-box{
  background:#fff;
  padding:18px;
  border-left:5px solid #1f78b4;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* Benefits */
.sa-benefit-list{
  max-width:700px;
 
  list-style:none;
  padding:0;
}

.sa-benefit-list li{
  padding:12px 0;
  font-size:16px;
  position:relative;
  padding-left:25px;
}

.sa-benefit-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#1f78b4;
}

/* Documents */
.sa-doc-tags{
  display:flex;
  flex-wrap:wrap;
  /*justify-content:center;*/
  gap:15px;
}

.sa-doc-tags span{
  background:#fff;
  padding:12px 20px;
  border-radius:30px;
  border:1px dashed #1f78b4;
  font-weight:500;
}

/* Table */
.sa-table-wrap{
  overflow-x:auto;
}

.sa-rate-table{
  width:100%;
  background:#fff;
  border-collapse:collapse;
}

.sa-rate-table th,
.sa-rate-table td{
  padding:15px;
  border:1px solid #ddd;
  text-align:center;
}

.sa-rate-table th{
  background:#0c3b63;
  color:#fff;
}

/* Steps */
.sa-step-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.sa-step-card{
  background:#fff;
  padding:25px;
  border-radius:15px;
  font-weight:600;
  position:relative;
  box-shadow:0 8px 25px rgba(0,0,0,.1);
}

.sa-step-card span{
  position:absolute;
  top:-18px;
  left:20px;
  width:40px;
  height:40px;
  background:#1f78b4;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
}

/* CTA */
.sa-cta-box{
  background:linear-gradient(135deg,#0c3b63,#1f78b4);
  color:#fff;
  text-align:center;
  padding:60px 20px;
  margin-top:60px;
  border-radius:25px;
}

.sa-cta-box h2{
  margin-bottom:25px;
}

.sa-btn-primary,
.sa-btn-outline{
  display:inline-block;
  margin:10px;
  padding:14px 32px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}

.sa-btn-primary{
  background:#fff;
  color:#0c3b63;
}

.sa-btn-outline{
  border:2px solid #fff;
  color:#fff;
}

/* Mobile */
@media(max-width:768px){
  .sa-banner h1{
    font-size:28px;
  }
}

.sb-info-section{
  padding:60px 20px;
  background:#f4f8fc;
}

.sb-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

/* Info Box */
.sb-info-box{
  
  padding:35px;
  border-radius:18px;
 
}

.sb-info-box h2{
  color:#0c3b63;
  margin-bottom:15px;
}

.sb-info-box p{
  font-size:16px;
  line-height:1.7;
  margin-bottom:12px;
}

/* Feature Box */
.sb-feature-box{
  background: linear-gradient(135deg, #36584d, #1f78b4);
  color:#fff;
  padding:35px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.sb-feature-box h2{
  margin-bottom:20px;
}

/* Feature List */
.sb-feature-list{
  list-style:none;
  padding:0;
  margin:0;
}

.sb-feature-list li{
  padding:12px 0;
  padding-left:28px;
  position:relative;
  font-size:15.5px;
}

.sb-feature-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#ffd24d;
  font-weight:bold;
}

/* Mobile */
@media(max-width:768px){
  .sb-info-box,
  .sb-feature-box{
    padding:25px;
  }
}

.whychoose
{
    background-color:#fff;
}

.ca-wrapper{
  padding:70px 20px;
  background:#ffffff;
}

.ca-container{
  max-width:100%;
  margin:auto;
  display:grid;
  /*grid-template-columns:1.2fr 1fr;*/
  gap:40px;
  align-items:stretch;
}

/* Left Content */
.ca-left{
  background:#f7f9fc;
  padding:40px;
  border-radius:20px;
  border:2px solid #e1e7ef;
}

.ca-left h2{
  color:#1c2d3f;
  font-size:32px;
  margin-bottom:15px;
}

.ca-left p{
  font-size:16px;
  line-height:1.8;
  margin-bottom:15px;
}

/* Right Features */
.ca-right{
  background:linear-gradient(135deg,#1c2d3f,#324c6b);
  color:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 12px 35px rgba(0,0,0,0.15);
}

.ca-right h3{
  margin-bottom:20px;
  font-size:22px;
}

/* Feature List */
.ca-feature-list{
  list-style:none;
  padding:0;
  margin:0;
}

.ca-feature-list li{
  padding:12px 0;
  padding-left:30px;
  position:relative;
  font-size:15.5px;
}

.ca-feature-list li::before{
  content:"➤";
  position:absolute;
  left:0;
  color:#ffd24d;
  font-size:18px;
}

/* Mobile */
@media(max-width:900px){
  .ca-container{
    grid-template-columns:1fr;
  }
}

.ca-feature-section{
  padding:70px 20px;
  background:#f5f7fb;
}

.ca-feature-title{
  text-align:center;
  font-size:30px;
  margin-bottom:45px;
  color:#1c2d3f;
}

/* Grid */
.ca-feature-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

/* Card */
.ca-feature-card{
  background:#ffffff;
  padding:35px 25px;
  border-radius:20px;
  text-align:center;
  border:1px solid #e3e9f0;
  transition:all .35s ease;
  position:relative;
}

.ca-feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* Icon */
.ca-icon{
  width:65px;
  height:65px;
  background:linear-gradient(135deg,#1c2d3f,#324c6b);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin:0 auto 18px;
}

/* Text */
.ca-feature-card h4{
  font-size:18px;
  margin-bottom:10px;
  color:#1c2d3f;
}

.ca-feature-card p{
  font-size:15px;
  line-height:1.6;
  color:#555;
}

/* Mobile */
@media(max-width:768px){
  .ca-feature-title{
    font-size:24px;
  }
}

.account-apply-section {
  background: linear-gradient(135deg, #0b3c5d, #145c8a);
  padding: 50px 15px;
  margin-top: 40px;
}

.apply-container {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  gap: 20px;
}

.apply-content h2 {
  font-size: 28px;
  color: #0b3c5d;
  margin-bottom: 10px;
}

.apply-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
}

/* Button */
.apply-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #0b3c5d;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid #0b3c5d;
}

.apply-btn:hover {
  background: #ffffff;
  color: #0b3c5d;
  transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .apply-container {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .apply-content h2 {
    font-size: 24px;
  }

  .apply-btn {
    margin-top: 15px;
  }
}

 /* Sidebar Wrapper */
.bank-sidebar {
  background: #36584d;
  padding: 18px;
  border-radius: 10px;
}

/* Sidebar Title */
.bank-sidebar-title {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
  
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 8px;
}

/* Menu List */
.bank-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Menu Item */
.bank-menu li {
  margin-bottom: 10px;
}

/* Menu Link */
.bank-menu li a {
  display: block;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

/* Hover Effect */
.bank-menu li a:hover {
  background: #ffd700;
  color: #8b1c2d;
}

/* Active */
.bank-menu li.active a {
  background: #fff;
  color: #000;
  font-weight: 600;
}

/* Mobile Fix */
@media (max-width: 767px) {
  .bank-sidebar {
    margin-bottom: 20px;
  }
}

#containerrr
{
    max-width:90%;
}

.fd-info-section {
  padding: 60px 0;
  background: #f5f6f8;
  font-family: "Segoe UI", sans-serif;
}

.fd-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  
}

.fd-title {
  color: #8b0029;
  font-size: 22px;
  margin-bottom: 18px;
  font-weight: 600;
}

.fd-feature-list,
.fd-eligibility-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fd-feature-list li,
.fd-eligibility-list li {
  padding: 10px 0;
  font-size: 15px;
  color: #444;
  border-bottom: 1px dashed #ddd;
}

.fd-feature-list li:last-child,
.fd-eligibility-list li:last-child {
  border-bottom: none;
}

.fd-eligibility {
  background: #fff8f2;
  border-top-color: #ffc107;
}

/* Mobile spacing fix */
@media (max-width: 767px) {
  .fd-box {
    margin-bottom: 20px;
  }
}

.bank-full-image {
  width: 100%;
  /*height: 500px;*/          /* Aapki requirement */
  overflow: hidden;
}

.bank-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* Image crop ho kar full cover karegi */
  display: block;
}


.rd-section {
        max-width: 1200px;
        margin: 40px auto;
        background: #ffffff;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }

    .rd-header {
        text-align: center;
        margin-bottom: 25px;
    }

    .rd-header h2 {
        color: #000;
        font-size: 32px;
        margin-bottom: 10px;
        text-align:left;
    }

    .rd-header p {
        color: #555;
        font-size: 16px;
        text-align:left;
    }

    .rd-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .rd-box {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 20px;
        transition: 0.3s;
        background: #fafafa;
    }

    .rd-box:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

    .rd-box h4 {
        color: #198754;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .rd-box p {
        font-size: 15px;
        color: #444;
        line-height: 1.6;
    }

    .rd-footer {
        margin-top: 30px;
        background: #0b5ed7;
        color: #fff;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
    }

    .rd-footer strong {
        font-size: 18px;
    }

    @media(max-width: 600px) {
        .rd-header h2 {
            font-size: 26px;
        }
    }
    
    .rd-wrapper{
    max-width:1200px;
    margin:40px auto;
    background:#ffffff;
    border-radius:12px;
    padding:40px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.rd-title{
    text-align:center;
    margin-bottom:30px;
    text-align:left;
}

.rd-title h2{
    color:#000;
    font-size:34px;
    margin-bottom:10px;
    text-align:left;
}

.rd-title p{
    color:#555;
    font-size:16px;
    max-width:100%;
    margin:auto;
    line-height:1.7;
    text-align:left !important;
}

.rd-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:22px;
    margin-top:35px;
}

.rd-card{
    background:#f9fbff;
    border:1px solid #dfe6f1;
    border-radius:10px;
    padding:22px;
    transition:0.3s ease;
}

.rd-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.rd-card h4{
    font-size:19px;
    color:#198754;
    margin-bottom:10px;
}

.rd-card p{
    font-size:15px;
    color:#444;
    line-height:1.6;
}

.rd-highlight{
    margin-top:40px;
    background:linear-gradient(90deg,#0b5ed7,#0d6efd);
    color:#fff;
    padding:25px;
    border-radius:10px;
    text-align:center;
}

.rd-highlight h3{
    margin:0;
    font-size:22px;
}

@media(max-width:600px){
    .rd-wrapper{
        padding:25px;
    }
    .rd-title h2{
        font-size:26px;
    }
}

.dd-wrapper{
    max-width:1200px;
    margin:40px auto;
    background:#ffffff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.dd-header{
    text-align:center;
    margin-bottom:30px;
}

.dd-header h2{
    font-size:34px;
    color:#000;
    margin-bottom:10px;
    text-align:left;
}

.dd-header p{
    font-size:16px;
    color:#555;
    max-width:100%;
    margin:auto;
    line-height:1.7;
    text-align:left;
}

.dd-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:22px;
    margin-top:35px;
}

.dd-card{
    background:#f9fbff;
    border:1px solid #dde3ee;
    border-radius:10px;
    padding:22px;
    transition:0.3s ease;
}

.dd-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.dd-card h4{
    font-size:19px;
    color:#198754;
    margin-bottom:10px;
}

.dd-card p{
    font-size:15px;
    color:#444;
    line-height:1.6;
}

.dd-table{
    margin-top:40px;
    overflow-x:auto;
}

.dd-table table{
    width:100%;
    border-collapse:collapse;
}

.dd-table th, .dd-table td{
    border:1px solid #dee2e6;
    padding:12px;
    text-align:center;
    font-size:15px;
}

.dd-table th{
    background:#36584d;
    color:#ffffff;
}

.dd-footer{
    margin-top:35px;
    background:#36584d;
    color:#fff;
    padding:22px;
    border-radius:10px;
    text-align:center;
    font-size:18px;
}

@media(max-width:600px){
    .dd-wrapper{
        padding:25px;
    }
    .dd-header h2{
        font-size:26px;
    }
}

.rate-wrapper{
    max-width:1200px;
    margin:40px auto;
    background:#ffffff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.rate-title{
    text-align:center;
    margin-bottom:25px;
}

.rate-title h2{
    font-size:32px;
    color:#000;
    margin-bottom:8px;
}

.rate-title p{
    color:#555;
    font-size:15px;
}

.table-responsive{
    overflow-x:auto;
}

.rate-table{
    width:100%;
    border-collapse:collapse;
    min-width:900px;
}

.rate-table th,
.rate-table td{
    border:1px solid #dee2e6;
    padding:14px 12px;
    text-align:center;
    font-size:15px;
}

.rate-table th{
    background:#325549;
    color:#ffffff;
    font-weight:600;
}

.rate-table td:first-child{
    text-align:left;
    font-weight:600;
    color:#333;
}

.rate-table tr:nth-child(even){
    background:#f8f9fc;
}

.rate-table tr:hover{
    background:#eef3ff;
}

.note{
    margin-top:20px;
    font-size:14px;
    color:#555;
}

@media(max-width:600px){
    .rate-title h2{
        font-size:24px;
    }
}

.loan-section{
  padding:50px 0;
}

.loan-container{
  max-width:1300px;
  margin:auto;
  display:flex;
  gap:30px;
  background:#fff;
  padding:40px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  align-items:flex-start;
}

/* LEFT */
.loan-content{
  flex:1;
}

.loan-content h2{
  font-size:36px;
  color:#000;
  margin-bottom:8px;
}

.loan-subtitle{
  color:#555;
  margin-bottom:25px;
}

.loan-box{
  background:#f9fbff;
  border:1px solid #dde3ee;
  border-radius:12px;
  padding:22px;
  margin-bottom:22px;
}

.loan-box h3{
  font-size:20px;
  color:#198754;
  margin-bottom:12px;
}

.loan-box ul{
  padding-left:18px;
  margin:0;
}

.loan-box li{
  font-size:15px;
  margin-bottom:8px;
}

.note{
  margin-top:10px;
  font-size:14px;
  color:#444;
  font-style:italic;
}

/* RIGHT IMAGE */
.loan-image{
  flex:0 0 38%;
  border-radius:12px;
  overflow:hidden;
}

.loan-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top;
}

/* RESPONSIVE */
@media(max-width:900px){
  .loan-container{
    flex-direction:column;
    padding:25px;
  }

  .loan-image{
    height:240px;
  }

  .loan-content h2{
    font-size:28px;
  }
}

.personal-loan{
  background:#f4f7fb;
  padding:60px 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

.pl-wrapper{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:35px;
  background:#fff;
  padding:40px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  align-items:stretch;
}

/* LEFT CONTENT */
.pl-content{
  flex:1;
}

.pl-content h2{
  font-size:36px;
  color:#000;
  margin-bottom:10px;
}

.pl-tagline{
  color:#555;
  margin-bottom:25px;
}

/* CONTENT BLOCK */
.pl-block{
  background:#f9fbff;
  border:1px solid #dde3ee;
  border-radius:12px;
  padding:20px;
  margin-bottom:20px;
}

.pl-block h3{
  font-size:20px;
  color:#198754;
  margin-bottom:12px;
}

.pl-block ul{
  padding-left:18px;
  margin:0;
}

.pl-block li{
  margin-bottom:8px;
  font-size:15px;
}

.pl-note{
  font-size:14px;
  color:#555;
  margin-top:10px;
  font-style:italic;
}

/* RIGHT IMAGE */
.pl-image{
  flex:0 0 40%;
  border-radius:14px;
  overflow:hidden;
}

.pl-image img{
  width:100%;
 
  object-fit:cover;
  object-position: top;
}

/* RESPONSIVE */
@media(max-width:768px){
  .pl-wrapper{
    flex-direction:column;
    padding:25px;
  }

  .pl-image{
    height:220px;
  }

  .pl-content h2{
    font-size:28px;
  }
}

.vehicle-loan-section{
  background:#f2f6fb;
  padding:60px 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

.vl-container{
  max-width:1200px;
  margin:auto;
  background:#ffffff;
  display:flex;
  gap:32px;
  padding:40px;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  align-items:stretch;
}

/* LEFT CONTENT */
.vl-content{
  flex:1;
}

.vl-content h2{
  font-size:36px;
  color:#000;
  margin-bottom:8px;
}

.vl-subtitle{
  color:#555;
  margin-bottom:25px;
}

/* CONTENT BOX */
.vl-box{
  background:#f9fbff;
  border:1px solid #dde3ee;
  border-radius:12px;
  padding:20px;
  margin-bottom:18px;
}

.vl-box h3{
  font-size:20px;
  color:#198754;
  margin-bottom:10px;
}

.vl-box ul{
  padding-left:18px;
  margin:0;
}

.vl-box li{
  margin-bottom:8px;
  font-size:15px;
  color:#333;
}

.vl-note{
  margin-top:10px;
  font-size:14px;
  color:#555;
  font-style:italic;
}

/* RIGHT IMAGE */
.vl-image{
  flex:0 0 40%;
  border-radius:14px;
  overflow:hidden;
}

.vl-image img{
  width:100%;
 
  object-fit:cover;
  object-position: top;
}

/* RESPONSIVE */
@media(max-width:768px){
  .vl-container{
    flex-direction:column;
    padding:25px;
  }

  .vl-image{
    height:230px;
  }

  .vl-content h2{
    font-size:28px;
  }
}

.cash-credit-section{
  background:#f3f6fb;
  padding:60px 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

.cc-container{
  max-width:1200px;
  margin:auto;
  background:#ffffff;
  display:flex;
  gap:32px;
  padding:40px;
  border-radius:18px;
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
  align-items:stretch;
}

/* LEFT CONTENT */
.cc-content{
  flex:1;
}

.cc-content h2{
  font-size:36px;
  color:#000;
  margin-bottom:8px;
}

.cc-subtitle{
  color:#555;
  margin-bottom:25px;
}

/* CONTENT BOX */
.cc-box{
  background:#f9fbff;
  border:1px solid #dde3ee;
  border-radius:12px;
  padding:20px;
  margin-bottom:18px;
}

.cc-box h3{
  font-size:20px;
  color:#198754;
  margin-bottom:10px;
}

.cc-box ul{
  padding-left:18px;
  margin:0;
}

.cc-box li{
  margin-bottom:8px;
  font-size:15px;
  color:#333;
}

.cc-note{
  margin-top:10px;
  font-size:14px;
  color:#555;
  font-style:italic;
}

/* RIGHT IMAGE */
.cc-image{
  flex:0 0 40%;
  border-radius:14px;
  overflow:hidden;
}

.cc-image img{
  width:100%;
 
  object-fit:cover;
  object-position: top;
}

/* RESPONSIVE */
@media(max-width:768px){
  .cc-container{
    flex-direction:column;
    padding:25px;
  }

  .cc-image{
    height:230px;
  }

  .cc-content h2{
    font-size:28px;
  }
}

.education-loan-section{
  background:#f3f7fb;
  padding:60px 0;
  font-family:"Segoe UI", Arial, sans-serif;
}

.el-container{
  max-width:1200px;
  margin:auto;
  background:#ffffff;
  display:flex;
  gap:32px;
  padding:40px;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  align-items:stretch;
}

/* LEFT CONTENT */
.el-content{
  flex:1;
}

.el-content h2{
  font-size:36px;
  color:#000;
  margin-bottom:8px;
}

.el-subtitle{
  color:#555;
  margin-bottom:25px;
}

/* CONTENT BOX */
.el-box{
  background:#f9fbff;
  border:1px solid #dde3ee;
  border-radius:12px;
  padding:20px;
  margin-bottom:18px;
}

.el-box h3{
  font-size:20px;
  color:#198754;
  margin-bottom:10px;
}

.el-box ul{
  padding-left:18px;
  margin:0;
}

.el-box li{
  margin-bottom:8px;
  font-size:15px;
  color:#333;
}

.el-note{
  margin-top:10px;
  font-size:14px;
  color:#555;
  font-style:italic;
}

/* RIGHT IMAGE */
.el-image{
  flex:0 0 40%;
  border-radius:14px;
  overflow:hidden;
}

.el-image img{
  width:100%;
 
  object-fit:cover;
  object-position: top;
}

/* RESPONSIVE */
@media(max-width:768px){
  .el-container{
    flex-direction:column;
    padding:25px;
  }

  .el-image{
    height:230px;
  }

  .el-content h2{
    font-size:28px;
  }
}

.jlg-loan-section{
  background:#f3f7fb;
  padding:60px 0;
  font-family:"Segoe UI", Arial, sans-serif;
}

.jlg-container{
  max-width:1200px;
  margin:auto;
  background:#ffffff;
  display:flex;
  gap:32px;
  padding:40px;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  align-items:stretch;
}

/* LEFT CONTENT */
.jlg-content{
  flex:1;
}

.jlg-content h2{
  font-size:33px;
  color:#000;
  margin-bottom:8px;
}

.jlg-subtitle{
  color:#555;
  margin-bottom:25px;
}

/* CONTENT BOX */
.jlg-box{
  background:#f9fbff;
  border:1px solid #dde3ee;
  border-radius:12px;
  padding:20px;
  margin-bottom:18px;
}

.jlg-box h3{
  font-size:20px;
  color:#198754;
  margin-bottom:10px;
}

.jlg-box p{
  font-size:15px;
  color:#333;
  line-height:1.6;
  margin:0;
}

.jlg-box ul{
  padding-left:18px;
  margin:0;
}

.jlg-box li{
  margin-bottom:8px;
  font-size:15px;
  color:#333;
}

.jlg-note{
  margin-top:10px;
  font-size:14px;
  color:#555;
  font-style:italic;
}

/* RIGHT IMAGE */
.jlg-image{
  flex:0 0 40%;
  border-radius:14px;
  overflow:hidden;
}

.jlg-image img{
  width:100%;

  object-fit:cover;
  object-position: top;
}

/* RESPONSIVE */
@media(max-width:768px){
  .jlg-container{
    flex-direction:column;
    padding:25px;
  }

  .jlg-image{
    height:230px;
  }

  .jlg-content h2{
    font-size:28px;
  }
}

.lad-section{
  background:#f3f7fb;
  padding:60px 0;
  font-family:"Segoe UI", Arial, sans-serif;
}

.lad-container{
  max-width:1200px;
  margin:auto;
  background:#ffffff;
  display:flex;
  gap:32px;
  padding:40px;
  border-radius:18px;
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
  align-items:stretch;
}

/* LEFT CONTENT */
.lad-content{
  flex:1;
}

.lad-content h2{
  font-size:36px;
  color:#000;
  margin-bottom:8px;
}

.lad-subtitle{
  color:#555;
  margin-bottom:25px;
}

/* CONTENT BOX */
.lad-box{
  background:#f9fbff;
  border:1px solid #dde3ee;
  border-radius:12px;
  padding:20px;
  margin-bottom:18px;
}

.lad-box h3{
  font-size:20px;
  color:#198754;
  margin-bottom:10px;
}

.lad-box ul{
  padding-left:18px;
  margin:0;
}

.lad-box li{
  margin-bottom:8px;
  font-size:15px;
  color:#333;
}

.lad-note{
  margin-top:10px;
  font-size:14px;
  color:#555;
  font-style:italic;
}

/* RIGHT IMAGE */
.lad-image{
  flex:0 0 40%;
  border-radius:14px;
  overflow:hidden;
}

.lad-image img{
  width:100%;
  
  object-fit:cover;
  object-position: top;
}

/* RESPONSIVE */
@media(max-width:768px){
  .lad-container{
    flex-direction:column;
    padding:25px;
  }

  .lad-image{
    height:220px;
  }

  .lad-content h2{
    font-size:28px;
  }
}

.roi-section{
  background:#f3f7fb;
  padding:60px 0;
  font-family:"Segoe UI", Arial, sans-serif;
}

.roi-container{
  max-width:1200px;
  margin:auto;
  background:#ffffff;
  padding:40px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.roi-container h2{
  text-align:center;
  font-size:36px;
  color:#0b5ed7;
  margin-bottom:8px;
}

.roi-subtitle{
  text-align:center;
  color:#555;
  margin-bottom:30px;
}

/* TABLE */
.table-responsive{
  overflow-x:auto;
}

.roi-table{
  width:100%;
  border-collapse:collapse;
  min-width:800px;
}

.roi-table thead{
  background:#36584d;
  color:#fff;
}

.roi-table th,
.roi-table td{
  padding:14px 12px;
  text-align:center;
  border:1px solid #e1e5ee;
  font-size:15px;
}

.roi-table th{
  font-weight:600;
}

.roi-table tbody tr:nth-child(even){
  background:#f9fbff;
}

.roi-table tbody tr:hover{
  background:#eef3ff;
}

/* NOTE */
.roi-note{
  margin-top:25px;
  background:#f9fbff;
  border-left:4px solid #0b5ed7;
  padding:15px 18px;
  border-radius:6px;
}

.roi-note p{
  margin:0;
  font-size:14px;
  color:#444;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:768px){
  .roi-container{
    padding:25px;
  }

  .roi-container h2{
    font-size:28px;
  }
}

.qrcode
{
    margin-top:50px;
    margin-bottom:50px;
}

.online-service .left-content
{
    margin-left:310px !important;
}
.online-service .left-content .btn-box
{
    right:400px;
}
.growth-block-one .inner-box:before
{
    background: #f0f1f1;
}

/* Tender Section */
.tender-section {
  background: #ffffff;
  padding: 80px 0;
}

.tender-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.tender-header {
  text-align: center;
  margin-bottom: 50px;
}

.tender-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111;
}

.tender-header p {
  font-size: 15px;
  color: #666;
}

/* Tender List */
.tender-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Tender Item */
.tender-item {
  display: grid;
  grid-template-columns: 70px auto 160px;
  align-items: center;
  gap: 25px;
  padding: 25px 30px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
}

.tender-number {
  width: 50px;
  height: 50px;
  background: #36584d;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content */
.tender-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
}

.tender-content p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
}

/* Action */
.tender-action {
  text-align: right;
}

.tender-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #36584d;
  color: #36584d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.tender-btn:hover {
  background: #bb0505;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .tender-item {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .tender-action {
    text-align: left;
  }
}

.asset-section {
    padding: 40px 0;
    background: #f4f6fa;
}

.asset-title {
    text-align: center;
    font-size: 26px;
    color: #003a8f;
    margin-bottom: 20px;
    font-weight: 600;
}

.asset-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.asset-table th {
    background: #36584d;
    color: #fff;
    padding: 12px;
    text-align: center;
    font-size: 14px;
}

.asset-table td {
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 14px;
}

.asset-table td:nth-child(1),
.asset-table td:nth-child(4) {
    text-align: center;
}

.asset-table tr:hover {
    background: #f1f5ff;
}

.asset-table a {
    color: #36584d;
    font-size: 16px;
}

.asset-table a:hover {
    color: #003a8f;
}

.table-responsive {
    overflow-x: auto;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.custom-pagination {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 6px;
}

.custom-pagination li a {
    display: block;
    padding: 8px 14px;
    border: 1px solid #003a8f;
    color: #003a8f;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.custom-pagination li a:hover {
    background: #003a8f;
    color: #fff;
}

.custom-pagination li a.active {
    background: #003a8f;
    color: #fff;
    font-weight: 600;
}

.custom-pagination li a.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.kmch-base-section {
    background: linear-gradient(135deg, #f4f8ff, #ffffff);
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.kmch-base-container {
    max-width: 1100px;
    margin: auto;
}

.kmch-base-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #36584d;
    margin-bottom: 15px;
}

.kmch-base-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #444;
}

.kmch-base-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.kmch-base-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.kmch-base-card:hover {
    transform: translateY(-5px);
}

.kmch-base-card span {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: #36584d;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 10px;
}

.kmch-base-card h4 {
    font-size: 16px;
    color: #222;
    margin-bottom: 5px;
}

.kmch-base-card small {
    color: #d9534f;
    font-size: 13px;
}

.kmch-base-disabled {
    opacity: 0.75;
}

.kmch-base-steps {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.kmch-base-steps h3 {
    margin-bottom: 15px;
    color: #36584d;
}

.kmch-base-steps ul {
    padding-left: 20px;
}

.kmch-base-steps li {
    margin-bottom: 10px;
    color: #333;
}

.kmch-base-steps a {
    color: #0058da;
    font-weight: 600;
    text-decoration: none;
}

.kmch-base-action {
    text-align: center;
}

.kmch-base-btn {
    display: inline-block;
    background: #36584d;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.kmch-base-btn:hover {
    background: #003f9e;
}

.kmch-bank-section {
    background: #f4f8ff;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.kmch-bank-container {
    max-width: 1100px;
    margin: auto;
}

.kmch-bank-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #0a3c8f;
    margin-bottom: 30px;
}

.kmch-bank-table-wrap {
    overflow-x: auto;
}

.kmch-bank-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.kmch-bank-table thead {
    background: #36584d;
    color: #ffffff;
}

.kmch-bank-table th,
.kmch-bank-table td {
    padding: 14px 90px;
    text-align: left;
    border-bottom: 1px solid #e6e6e6;
    font-size: 15px;
   
}

.kmch-bank-table tbody tr:hover {
    background: #f1f6ff;
}

.kmch-bank-table a {
    color: #0058da;
    font-weight: 600;
    text-decoration: none;
}

.kmch-bank-table a:hover {
    text-decoration: underline;
}

.kmch-bank-table .na {
    color: #d9534f;
    font-weight: 600;
}

.atm-report-section {
    background: #f5f8ff;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.atm-report-container {
    max-width: 1200px;
    margin: auto;
}

.atm-report-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1c3f39;
    margin-bottom: 40px;
}

.atm-report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* LEFT INFO */
.atm-report-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.atm-report-info h4 {
    margin-top: 20px;
    font-size: 17px;
}

.atm-report-info p,
.atm-report-info li {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.atm-report-info ul {
    padding-left: 18px;
}

.atm-note {
    color: red;
    margin-top: 20px;
    font-weight: 600;
}

/* FORM */
.atm-report-form input,
.atm-report-form select,
.atm-report-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.atm-report-form textarea {
    resize: none;
    height: 120px;
    margin-bottom: 15px;
}

.captcha-box {
    background: #f1f1f1;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 20px;
}

.atm-submit-btn {
    background: #1c3f39;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
}

.atm-submit-btn:hover {
    background: #16342f;
}

.atm-file-note {
    margin-top: 12px;
    font-size: 13px;
    color: red;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .atm-report-grid {
        grid-template-columns: 1fr;
    }
}

.ni-act-holiday {
    font-family: 'Noto Sans Devanagari', Arial, sans-serif;
    background: #f4f6f9;
}

/* Header */
.ni-act-header {
    /*background: linear-gradient(135deg, #003366, #0058da);*/
    color: #fff;
    text-align: center;
    padding: 40px 15px;
}

.ni-act-header h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.ni-act-header h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.ni-act-header p {
    font-size: 16px;
    opacity: 0.95;
}

/* Container */
.ni-act-container {
    max-width: 1100px;
    margin: -40px auto 40px;
    padding: 0 15px;
}

/* Table */
.ni-act-table-wrap {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow-x: auto;
}

.ni-act-table {
    width: 100%;
    border-collapse: collapse;
}

.ni-act-table th,
.ni-act-table td {
    border: 1px solid #e0e0e0;
    padding: 10px 40px;
    font-size: 15px;
    text-align: justify;
}

.ni-act-table thead th {
    background: #36584d;
    color: #fff;
    font-weight: 600;
}

.ni-act-table tbody tr:nth-child(even) {
    background: #f9fbff;
}

.ni-act-table tbody tr:hover {
    background: #eef4ff;
}

/* Note */
.ni-act-note {
    background: #fff8e1;
    border-left: 5px solid #ff9800;
    padding: 15px;
    margin-top: 20px;
    font-size: 14px;
    border-radius: 4px;
}

/* Responsive */
@media(max-width: 768px) {
    .ni-act-header h1 { font-size: 22px; }
    .ni-act-header h2 { font-size: 18px; }
    .ni-act-table th,
    .ni-act-table td { font-size: 14px; }
}

.tax-calculator {
 
    padding: 60px 15px;
    font-family: 'Segoe UI', sans-serif;
}

.tax-header {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.tax-header h2 {
    font-size: 30px;
    margin-bottom: 5px;
}

.tax-header p {
    font-size: 16px;
    opacity: 0.95;
}

.tax-card {
    max-width: 420px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.tax-card label {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.tax-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

.tax-input-group span {
    padding: 10px 14px;
    background: #f0f3f8;
    font-weight: bold;
}

.tax-input-group input {
    border: none;
    outline: none;
    padding: 12px;
    width: 100%;
    font-size: 15px;
}

.tax-card button {
    width: 100%;
    padding: 12px;
    background: #0058da;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.tax-card button:hover {
    background: #003f9e;
}

.tax-result {
    margin-top: 25px;
    background: #f4f8ff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.tax-result h3 {
    font-size: 16px;
    color: #333;
}

.tax-result p {
    font-size: 22px;
    color: #0058da;
    font-weight: bold;
}

/* Responsive */
@media(max-width: 480px) {
    .tax-header h2 { font-size: 24px; }
    .tax-card { padding: 20px; }
}

.page-wrapper {
    max-width: 1200px;
    margin: 20px auto;
    padding: 15px;
}

/* ===== Banner ===== */
.career-banner {
   
    color: #fff;
    text-align: center;
    padding: 30px 15px;
    border-radius: 8px;
}
.career-banner h1 {
    margin: 0;
    font-size: 32px;
}
.career-banner p {
    margin-top: 8px;
    font-size: 16px;
}

/* ===== Table Styles ===== */
.career-job-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.career-job-table th, .career-job-table td {
    padding: 12px 15px;
    text-align: left;
    vertical-align: top;
}
.career-job-table th {
    background: #36584d;
    color: #fff;
    font-weight: 600;
}
.career-job-table tr:nth-child(even) td {
    background: #f9f9f9;
}
.career-job-table td a {
    color: #000;
    text-decoration: none;
    display: block;
    margin: 3px 0;
}
.career-job-table td a:hover {
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media(max-width:768px){
    .page-wrapper {
        padding: 10px;
    }

    .career-banner {
        padding: 20px 10px;
    }

    .career-banner h1 {
        font-size: 22px;
    }

    .career-banner p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Table becomes card layout */
    .career-job-table,
    .career-job-table thead,
    .career-job-table tbody,
    .career-job-table th,
    .career-job-table td,
    .career-job-table tr {
        display: block;
        width: 100%;
    }

    .career-job-table thead {
        display: none;
    }

    .career-job-table tr {
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        background: #fff;
        overflow: hidden;
    }

    .career-job-table td {
        padding: 12px;
        border-bottom: 1px solid #eee;
    }

    /* Recruitment title */
    .career-job-table td:first-child strong {
        display: block;
        font-size: 15px;
        margin-bottom: 8px;
        color: #003366;
    }

    /* Links spacing */
    .career-job-table td a {
        font-size: 14px;
        margin: 6px 0;
    }

    /* Opening & Closing date styling */
    .career-job-table td:nth-child(2),
    .career-job-table td:nth-child(3) {
        font-size: 14px;
        font-weight: 600;
        background: #f4f6f9;
        text-align: center;
    }

    .career-job-table td:nth-child(2)::before {
        content: "Opening Date: ";
        display: block;
        font-weight: 500;
        color: #555;
        margin-bottom: 4px;
    }

    .career-job-table td:nth-child(3)::before {
        content: "Closing Date: ";
        display: block;
        font-weight: 500;
        color: #555;
        margin-bottom: 4px;
    }
}

.notice1
{
    color:red;
}
.career-job-table th, .career-job-table td
{
    /*background-color: azure;*/
}

.career-job-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 15px;
}

.career-job-table th,
.career-job-table td {
    padding: 14px 15px;
    vertical-align: top;
    position: relative;
}

/* DASHED UNDERLINE FOR EACH COLUMN */
.career-job-table th::after,
.career-job-table td::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    border-bottom: 1.5px dashed #b0b0b0;
}

/* TABLE HEADER STYLE */
.career-job-table thead th {
    background: #f5f7fa;
    font-weight: 600;
    color: #333;
}

/* ROW HOVER EFFECT */
.career-job-table tbody tr:hover {
    background: #f9fbff;
}

/* LINKS STYLE */
.career-job-table a {
    display: block;
    margin-top: 6px;
    color: #0058da;
    text-decoration: none;
    font-size: 14px;
}

.career-job-table a:hover {
    text-decoration: underline;
}

/* NOTICE TAG */
.notice1 {
    font-weight: 600;
    color: #d40000;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .career-job-table {
        font-size: 14px;
    }

    .career-job-table th,
    .career-job-table td {
        padding: 12px 10px;
    }
}

.interview-section {
    margin: 40px 0;
}

.intr {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0058da;
}

.table-responsive {
    overflow-x: auto;
}

.interview-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 14px;
}

.interview-table th,
.interview-table td {
    padding: 12px 14px;
    border-bottom: 1px dashed #ccc;
    vertical-align: top;
}

.interview-table thead th {
    background: #f1f5ff;
    font-weight: 600;
}

.no-change {
    color: #d40000;
    font-size: 13px;
}

.interview-links {
    margin-top: 20px;
}

.interview-links a {
    display: block;
    margin-bottom: 8px;
    color: #0058da;
    text-decoration: none;
}

.interview-links a:hover {
    text-decoration: underline;
}
.team-block-one .inner-box
{
    background-color: aliceblue;
    border-bottom: 2px solid #36584d;
}

.form-table-section {
  max-width: 1100px;
  margin: auto;
  padding: 50px 15px;
}

.form-table-header {
  display: grid;
  grid-template-columns: 120px 1fr 200px;
  background: #2f5d50;
  color: #fff;
  padding: 18px 25px;
  border-radius: 12px;
  font-weight: 600;
}

.form-table-row {
  display: grid;
  grid-template-columns: 120px 1fr 200px;
  background: #fff;
  margin-top: 15px;
  padding: 18px 25px;
  border-radius: 14px;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.form-table-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.sr {
  font-weight: bold;
  color: #2f5d50;
}

.name {
  font-weight: 600;
  letter-spacing: 0.3px;
}

.download-link {
  display: inline-block;
  padding: 8px 18px;
  border: 2px solid #2f5d50;
  color: #2f5d50;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.download-link:hover {
  background: #e63946;
  color: #fff;
}

.password-protect-wrapper {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f7f6;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.password-box {
  background: #ffffff;
  padding: 35px 40px;
  max-width: 420px;
  width: 100%;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.password-box h2 {
  margin-bottom: 15px;
  color: #234d3c;
  font-size: 24px;
  font-weight: 700;
}

.password-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.password-box form {
  display: flex;
  gap: 10px;
}

.password-box input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 30px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

.password-box input:focus {
  border-color: #2f5d50;
}

.password-box button {
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  background: #2f5d50;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.password-box button:hover {
  background: #1f4035;
}

/* Mobile */
@media (max-width: 480px) {
  .password-box form {
    flex-direction: column;
  }

  .password-box button {
    width: 100%;
  }
}

.faq-title{
  text-align:center;
  font-size:28px;
  font-weight:700;
  color:#0b4f6c;
  margin-bottom:30px;
}
.faq-box{
  background:#fff;
  padding:30px;
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}
.accordion-button{
  font-weight:600;
  color:#0b4f6c;
}
.accordion-button:not(.collapsed){
  background:#e7f3ff;
  color:#084298;
}
.accordion-body{
  color:#444;
  line-height:1.7;
}

.dicgc-section {
    background: #fff;
    padding: 40px 0;
}

.dicgc-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Left Logo */
.dicgc-logo h2 {
    font-size: 70px;
    font-weight: 800;
    line-height: 0.9;
    color: #0b5d4f;
    margin: 0;
}

/* Content */
.dicgc-content {
    flex: 1;
}

.dicgc-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #111;
    margin: 0;
    text-align: justify;
}

/* QR */
.dicgc-qr img {
    width: 120px;
    height: auto;
}

/* 🔥 Responsive */
@media (max-width: 768px) {
    .dicgc-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .dicgc-logo h2 {
        font-size: 50px;
    }

    .dicgc-qr img {
        width: 100px;
    }
}

@media only screen and (max-width: 768px) {
    
     .form-table-header {
    display: none;
  }

  .form-table-row {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
    padding: 20px;
  }

  .sr {
    font-size: 14px;
    background: #2f5d50;
    color: #fff;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
  }

  .name {
    font-size: 16px;
  }

  .download-link {
    width: 100%;
    text-align: center;
  }
    
     .profile-wrap{
        flex-direction: row;   /* ek hi row me */
    }

    .profile-card{
        width: 50%;            /* dono half-half */
    }

    .profile-img img{
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .profile-card h4{
        font-size: 14px;
    }

    .profile-card small{
        font-size: 12px;
    }
    
    .ni-act-table th,
.ni-act-table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    font-size: 12px;
    text-align: justify;
}
    
    .kmch-bank-table th,
    .kmch-bank-table td {
    padding: 14px 12px !important;
    text-align: left;
    border-bottom: 1px solid #e6e6e6;
    font-size: 15px;
    margin-left:0px;
}
    
    .main-header .header-lower
    {
        padding:5px !important;
    }
    
    .menu-area .mobile-nav-toggler
    {
        margin-top:12px;
        background:#36584d !important;
    }
    
    .page-title h1
    {
        line-height:35px !important;
    }
    
    /* Tender Section */
.tender-section {
  background: #ffffff;
  padding: 0px 0;
}
    
    .left-column
    {
        display:block !important;
        
    }
    
    
    
    .online-service .left-content .btn-box
{
    right:0px;
    width: 250px;
        /* justify-content: center !important; */
        margin-left: auto;
        margin-right: auto;
}
    
    .online-service .left-content
{
    margin-left:0px !important;
}
    
    
    
    .qrcode
{
    margin-top:-70px;
}
    
 .roi-section{
  background:#f3f7fb;
  padding:0px 0;
  font-family:"Segoe UI", Arial, sans-serif;
}
    
    .cash-credit-section{
  background:#f3f6fb;
  padding:0px 0;
  font-family: "Segoe UI", Arial, sans-serif;
}
    
  .education-loan-section{
  background:#f3f7fb;
  padding:0px 0;
  font-family:"Segoe UI", Arial, sans-serif;
}
    
  .jlg-loan-section{
  background:#f3f7fb;
  padding:0px 0;
  font-family:"Segoe UI", Arial, sans-serif;
}
    
    .lad-section{
  background:#f3f7fb;
  padding:0px 0;
  font-family:"Segoe UI", Arial, sans-serif;
}

    
   .loan-section{
    padding:0px 0;
    }
    
    .sec-title h2
    {
        font-size:26px !important;
    }
    
    .dd-wrapper{
    max-width:1200px;
    margin:40px auto;
    background:#ffffff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    margin-top:-80px;
}
    
     .rd-wrapper{
    max-width:1200px;
    margin:40px auto;
    background:#ffffff;
    border-radius:12px;
    padding:40px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    margin-top:-80px;
}
    
    #containerrr
{
    max-width:100%;
}
    
    .page-title .bread-crumb
    {
        margin-top:-47px;
        display:none !important;
    }
    
     .table-responsive-mobile {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .custom-table {
    min-width: 700px; /* force horizontal scroll */
  }
    
    .team-block-one .inner-box
{
    height:auto;
}
    
    .page-title h1
    {
        font-size:26px !important;
        margin-top:-100px !important;
    }
    
    .page-title {
        padding-top: 126px !important;
    }
    
    .mobile-menu .nav-logo
    {
        padding-bottom:20px !important;
    }
    
    .loanrate2
{
    display:block;
}
    
    .loanrate
{
    display:none;
}

   .vertical-social{
    display:none;
  }

  .forex-img img{
    height:140px;
  }

  .forex-content h4{
    font-size:16px;
  }

  .about-bank{
  padding:70px 0;
  background-image:url(../images/backk.jpg);
  font-family: 'Segoe UI', sans-serif;
  background-repeat: no-repeat;
  margin-top: -50px;
}

  .notice-title
  {
    height: 28px;
  }

  .header-top
  {
    padding: 0px;
  }

  .top-inner
  {
    padding: 5px !important;
  }


  #rbi1
  {
    display:none;
  }

      .loan-item {
        flex: -1 1 100%;
    }


  .loan-item h3 {
  font-size: 24px;
  color: #000;
  margin: 10px 0 5px 0;
}

.loan-item h3 span {
  font-size: 14px;
  color: #000;
}

.loan-item p {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0;
}


  .offers-news{
    flex-direction: column;
    gap:15px;
    padding:15px;
  }

  .offers-box,
  .news-box{
    width:100%;
  }

  .offers-scroll{
    height:220px;
  }

  .offer-item{
    gap:12px;
    padding:12px;
  }

  .offer-item img{
    width:60px;
    height:60px;
  }

  .offer-item p{
    font-size:13px;
  }

  /* NEWS SLIDER */
  .news-slider{
    height:auto;
    padding:25px 15px 50px;
  }

  .news{
    font-size:18px;
    line-height:1.5;
  }

  .dots{
    bottom:10px;
  }

  .loan-rates-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background-image: none !important;
  /*box-shadow: 0 12px 15px -6px rgba(50, 85, 73, 0.3);*/
  margin-top: 0px;
}

  #bannerr1
{
  height: auto;
}

  .product-img {
  width: 100%;               /* frame width */
  height: 100%;              /* frame height */
  flex-shrink: 0;            /* prevent shrink */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;          /* crop extra */
  border-radius: 14px;
  background: #f1f6f5;
  box-shadow: 0 6px 18px rgba(50, 85, 73, 0.25);
}

  .product-item {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Light subtle shadow */
    height:auto;
}

  .rbi-inline {
        justify-content: center;
    }

    /* First 3 links → top line */
    .rbi-inline a:nth-child(1),
    .rbi-inline a:nth-child(3),
    .rbi-inline a:nth-child(5) {
        flex: 0 0 auto;
    }

    /* Last 2 links → second line */
    .rbi-inline a:nth-child(7),
    .rbi-inline a:nth-child(9) {
        flex: 0 0 auto;
        margin-top: 6px;
    }


  .containrrr
  {
    display:none;
  }

  .navbarr
{
  display:block;
}

  .logo
{
  margin: 0px;
}

.left-column
{
  display: none;
}

.logobox
{
  display: block;
}
}

@media only screen and (min-width:548px) and (max-width: 770px) {
    #bannerr1 {
    height: 330px;
}
.loan-rates-row
{
    background-image:none !important;
    margin-top:-21px;
}
.loan-item h3
{
    color:#000;
}

  .online-service .left-content
{
    margin-left:310px !important;
}
.online-service .left-content .btn-box
{
    right:100px;
}

}

@media only screen and (min-width:771px) and (max-width: 1000px) {
  #bannerr1 {
    height: 330px;
}  
.loan-rates-row
{
    background-image:none !important;
    margin-top:-21px;
}
.loan-item h3
{
    color:#000;
}

  .online-service .left-content
{
    margin-left:310px !important;
}
.online-service .left-content .btn-box
{
    right:100px;
}

}

@media only screen and (min-width:1001px) and (max-width: 1201px) {
 
  .main-menu .navigation > li > a
  {
    font-size: 13px;
  }
  .sticky-logo
  {
   width: 300px;
   margin-top: 20px;
  }
  
  .chat-form
  {
      padding:2px;
  }
  
  .online-service .left-content
{
    margin-left:310px !important;
}
.online-service .left-content .btn-box
{
    right:200px;
}

#bannerr1 {
    height: 355px;
    object-fit: cover;   /* image fit + crop */
    object-position: top;
}

}


@media only screen and (min-width:1202px) and (max-width: 1300px) {
 
  .main-menu .navigation > li > a
  {
    font-size: 13px;
  }
  .sticky-logo
  {
   width: 320px;
   margin-top: 15px;
  }
  
   .chat-form
  {
      padding:2px;
  }
  
    .online-service .left-content
{
    margin-left:310px !important;
}
.online-service .left-content .btn-box
{
    right:200px;
}

#bannerr1 {
    height: 355px;
    object-fit: cover;   /* image fit + crop */
    object-position: top;
}

}

@media only screen and (min-width:1301px) and (max-width: 1400px) {
 
  .main-menu .navigation > li > a
  {
    font-size: 15px;
  }
  .sticky-logo
  {
   width: 350px;
   margin-top: 10px;
  }
  
  
  
  .chat-form input, .chat-form textarea
  {
      padding:3px 15px 4px;
  }
  
    .online-service .left-content
{
    margin-left:310px !important;
}
.online-service .left-content .btn-box
{
    right:200px;
}

#bannerr1 {
    height: 370px;
    object-fit: cover;   /* image fit + crop */
    object-position: top;
}


}

@media only screen and (min-width:1401px) and (max-width: 1500px) {
 
  .main-menu .navigation > li > a
  {
    font-size: 15px;
  }
  .sticky-logo
  {
   width: 350px;
   margin-top: 10px;
  }
  
  .chat-form input, .chat-form textarea
  {
      padding:5px 15px 4px;
  }
  
    .online-service .left-content
{
    margin-left:310px !important;
}
.online-service .left-content .btn-box
{
    right:200px;
}

#bannerr1 {
    height: 370px;
     object-fit: cover;   /* image fit + crop */
    object-position: top;
}

}

@media only screen and (min-width:1501px) and (max-width: 1600px) {
 
  .main-menu .navigation > li > a
  {
    font-size: 15px;
  }
  .sticky-logo
  {
   width: 380px;
   margin-top: 10px;
  }
  
  #bannerr1 {
    height: 370px;
     object-fit: cover;   /* image fit + crop */
    object-position: top;
}

}

@media only screen and (min-width:1601px) and (max-width: 1700px) {
 
  .main-menu .navigation > li > a
  {
    font-size: 15px;
  }
  .sticky-logo
  {
   width: 380px;
   margin-top: 10px;
  }
  
  #bannerr1 {
    height: 370px;
     object-fit: cover;   /* image fit + crop */
    object-position: top;
}

}

@media only screen and (min-width:1701px) and (max-width: 1800px) {
 
  .main-menu .navigation > li > a
  {
    font-size: 16px;
  }
  .sticky-logo
  {
   width: 400px;
   margin-top: 10px;
  }
  
  #bannerr1 {
    height: 370px;
     object-fit: cover;   /* image fit + crop */
    object-position: top;
}

}





