/* GUCBank - Goa Urban  Bank Custom Stylesheet */

/* Color Variables */
:root {
  --primary-color: #3498db;
  /* --secondary-color: #2ecc71; */
  --accent-color: #e74c3c;
  --background-color: #ecf0f1;
  --text-color: #2c3e50;
}

/* Typography Variables */
:root {
  --font-family: "Arial, sans-serif";
  --font-size-base: 16px;
  --font-size-large: 24px;
  --font-size-small: 12px;
}

/* Spacing Variables */
:root {
  --spacing-small: 8px;
  --spacing-medium: 16px;
  --spacing-large: 24px;
}

/* Border Radius Variables */
:root {
  --border-radius-small: 4px;
  --border-radius-medium: 8px;
  --border-radius-large: 12px;
}

/* Example Usage */
body {
  /* font-family: var(--font-family); */
  font-size: var(--font-size-base);
  color: var(--text-color);
  background-color: var(--background-color);
}

h1 {
  font-size: var(--font-size-large);
  color: var(--primary-color);
}

button {
  background-color: var(--secondary-color);
  color: #fff;
  padding: var(--spacing-small) var(--spacing-medium);
  border: none;
  border-radius: var(--border-radius-small);
  cursor: pointer;
}

button:hover {
  /* background-color: var(--accent-color); */
}
/* Responsive Styles */

/* Small Mobile Devices */
@media (max-width: 320px) {
  body {
    font-size: calc(var(--font-size-base) - 2px);
  }

  h1 {
    font-size: calc(var(--font-size-large) - 4px);
  }

  p {
    font-size: calc(var(--font-size-base) - 2px);
  }

  button {
    padding: calc(var(--spacing-small) - 2px) calc(var(--spacing-medium) - 4px);
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  body {
    font-size: calc(var(--font-size-base) - 1px);
  }

  h1 {
    font-size: calc(var(--font-size-large) - 2px);
  }

  h6 {
    text-align: center;
    font-weight: 600;
  }
  .mb-50 {
    margin-bottom: 20px !important;
  }

  button {
    padding: calc(var(--spacing-small) - 1px) calc(var(--spacing-medium) - 2px);
  }
  .custom-logo-box-01 {
    display: block !important;
    /* width: 100px; */
    height: auto;
  }

  .main-header .outer-box .logo-box {
    background-color: #ffffff00 !important;
    padding: 7px !important;
    width: 63vw;
  }
  .custom-logo-box-01 img {
    width: 74vw !important;
    height: auto;
  }
  .header-style-two .custom-header-lower {
    background: #ffffff00;
    padding-right: 0px;
    background-image: linear-gradient(
      315deg,
      #ffffff 0%,
      #5899e2 74%
    ) !important;

    padding-bottom: 9px;
  }
  .header-style-two .custom-header-top {
    display: none;
  }
  .custom-banner12 {
    margin-top: 61px !important;
  }

  .header-style-two.main-header .outer-box .logo-box .logo {
    margin: 0px;
    max-width: 216px;
  }
  .main-header .custom-outer-box {
    display: flex;
    justify-content: space-between !important;
  }

  .custom-logo-box img {
    max-width: 100%;
    height: auto;
  }

  .small-mobile-custom {
    height: 27px;
    width: 55vw;
  }

  .custom-logo-box-01 img {
    width: 50vw;
    height: auto;
  }

  .header-top .custom-info-list {
    display: none;
  }
  .header-style-two .custom-header-lower {
    background: #ffffff00;
    padding-right: 0px;
  }

  .main-header .custom-outer-box12 {
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    padding-top: 12px;
    padding-right: 15px;
  }

  #index-popup .inner {
    margin-top: -50px;
    width: 322px !important;
    height: auto !important;
  }

  .carousel-inner > .carousel-item > a img {
    height: 32vh !important;
  }

  .carousel-item .carousel-caption-custom {
    display: block !important;
  }

  .carousel-item .carousel-caption-custom {
    top: 27px;
  }

  .carousel-item .carousel-caption-custom h5 {
    font-size: 21px !important;
    font-weight: 700;
    color: #000000;
  }

  .carousel-item .carousel-caption-custom p {
    font-size: 15px !important;
    font-weight: 500;
    margin-bottom: 0px;
    padding-top: 0px !important;
  }

  .theme-btn.btn-one {
    background-color: #393185 !important;
    padding: 6px;
    font-size: 12px;
    /* padding-top: 0px; */
  }
  .news-style-two {
    padding: 0px 0px 0px 0px;
  }

  .content_block_four .content-box h2 {
    display: block;
    font-size: 26px;
    line-height: 37px;
    font-weight: 800;
    margin-bottom: 14px;
    text-align: center;
  }
  .content_block_four .content-box p {
    font-size: 15px;
  }
  .custom-Blog-bank {
    padding-top: 10px !important;
  }
  .custom-list-style-one {
    padding-left: 0px;
  }

  .funfact-block-one .inner-box .custom-icon-box {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }
  .funfact-block-one .inner-box .custom-count-box {
    font-size: 28px;
  }
  .funfact-block-one .inner-box p {
    font-size: 19px;
    line-height: 0px;
    margin-bottom: 0px;
  }
  marquee {
    height: 236px !important;
  }
}
/* Tablet Devices */
@media (max-width: 768px) {
  body {
    font-size: var(--font-size-base);
  }

  h2 {
    font-size: 22px;
  }

  p {
    font-size: 14px;
  }

  button {
    padding: var(--spacing-small) var(--spacing-medium);
  }

  .header-style-two .custom-header-lower {
    background: #ffffff00;
    padding-right: 0px;
  }

  .main-header .custom-outer-box12 {
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 12px;
    padding-right: 15px;
  }

  .sec-title h2 {
    font-size: 22px;
    line-height: 35px;
    text-align: center;
  }
  #index-popup .inner {
    margin-top: -50px;
    width: 322px !important;
    height: 50vh !important;
  }

  .custom-Our-Services .tab-btns li span {
    position: relative;
    display: block;
    padding: 0px 7px;
  }

  .custom-Our-Services .tab-btns {
    display: flex;
    text-align: center;
  }

  .custom-Our-Services .tab-btns li {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 19px;
  }
  .custom-loan-services ul {
    padding-left: 0px;
  }

  .custom-our-services {
    margin-bottom: 0px;
  }

  .custom-list-item {
    padding-left: 0px;
    margin-bottom: 5px;
  }
  .custom-our-services-title {
    margin-bottom: 20px;
  }

  .custom-logo-box-01 {
    display: block !important;
    /* width: 100px; */
    height: auto;
  }

  .main-header .outer-box .logo-box {
    background-color: #ffffff00 !important;
    padding: 7px !important;
    width: 63vw;
  }
  .custom-logo-box-01 img {
    width: 74vw !important;
    height: auto;
  }
  .header-style-two .custom-header-lower {
    background: #ffffff00;
    padding-right: 0px;
    background-image: linear-gradient(
      315deg,
      #ffffff 0%,
      #5899e2 74%
    ) !important;

    padding-bottom: 9px;
  }
  .header-style-two .custom-header-top {
    display: none;
  }
  .custom-banner12 {
    margin-top: 61px !important;
  }

  .header-style-two.main-header .outer-box .logo-box .logo {
    margin: 0px;
    max-width: 216px;
  }
  .main-header .custom-outer-box {
    display: flex;
    justify-content: space-between !important;
  }

  .custom-logo-box img {
    max-width: 100%;
    height: auto;
  }

  .small-mobile-custom {
    height: 27px;
    width: 55vw;
  }

  .custom-logo-box-01 img {
    width: 50vw;
    height: auto;
  }

  .header-top .custom-info-list {
    display: none;
  }
  .header-style-two .custom-header-lower {
    background: #ffffff00;
    padding-right: 0px;
  }

  .main-header .custom-outer-box12 {
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    padding-top: 12px;
    padding-right: 15px;
  }

  #index-popup .inner {
    margin-top: -50px;
    width: 322px !important;
    height: auto !important;
  }

  .carousel-inner > .carousel-item > a img {
    height: 32vh !important;
  }

  .carousel-item .carousel-caption-custom {
    display: block !important;
  }

  .carousel-item .carousel-caption-custom {
    top: 27px;
  }

  .carousel-item .carousel-caption-custom h5 {
    font-size: 21px !important;
    font-weight: 700;
    color: #000000;
  }

  .carousel-item .carousel-caption-custom p {
    font-size: 15px !important;
    font-weight: 500;
    margin-bottom: 0px;
    padding-top: 0px !important;
  }

  .theme-btn.btn-one {
    background-color: #393185 !important;
    padding: 6px;
    font-size: 12px;
    /* padding-top: 0px; */
  }
  .news-style-two {
    padding: 0px 0px 0px 0px;
  }

  .content_block_four .content-box h2 {
    display: block;
    font-size: 26px;
    line-height: 37px;
    font-weight: 800;
    margin-bottom: 14px;
    text-align: center;
  }
  .content_block_four .content-box p {
    font-size: 15px;
  }
  .custom-Blog-bank {
    padding-top: 10px !important;
  }
  .custom-list-style-one {
    padding-left: 0px;
  }

  .funfact-block-one .custom-inner-box-number1 {
    padding: 54px 0px 0px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .custom-mobile {
    padding-top: 50px;
  }
  .feature-style-two .custom-sec-title {
    background-color: #393185;
    padding-left: 58px;
  }
}
/* Desktop Devices */
@media (max-width: 992px) {
  body {
    font-size: var(--font-size-base);
  }

  h1 {
    font-size: var(--font-size-large);
  }

  p {
    /* font-size: var(--font-size-base); */
  }

  button {
    padding: var(--spacing-small) var(--spacing-medium);
  }

  .header-style-two .custom-header-lower {
    background: #ffffff00;
    padding-right: 0px;
  }

  .main-header .custom-outer-box12 {
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 12px;
    padding-right: 15px;
  }
  .custom-history {
    text-align: center;
  }
  .custom-history-image img {
    width: 100%;
    height: auto;
  }

  .history-section {
    padding-top: 0px;
  }

  .custom-logo-box-01 {
    display: block !important;
    /* width: 100px; */
    height: auto;
  }

  .main-header .outer-box .logo-box {
    background-color: #ffffff00 !important;
    padding: 7px !important;
    width: 63vw;
  }
  .custom-logo-box-01 img {
    width: 74vw !important;
    height: auto;
  }
  .header-style-two .custom-header-lower {
    background: #ffffff00;
    padding-right: 0px;
    background-image: linear-gradient(
      315deg,
      #ffffff 0%,
      #5899e2 74%
    ) !important;

    padding-bottom: 9px;
  }
  .header-style-two .custom-header-top {
    display: none;
  }
  .custom-banner12 {
    margin-top: 61px !important;
  }

  .header-style-two.main-header .outer-box .logo-box .logo {
    margin: 0px;
    max-width: 216px;
  }
  .main-header .custom-outer-box {
    display: flex;
    justify-content: space-between !important;
  }

  .custom-logo-box img {
    max-width: 100%;
    height: auto;
  }

  .small-mobile-custom {
    height: 27px;
    width: 55vw;
  }

  .custom-logo-box-01 img {
    width: 50vw;
    height: auto;
  }

  .header-top .custom-info-list {
    display: none;
  }
  .header-style-two .custom-header-lower {
    background: #ffffff00;
    padding-right: 0px;
  }

  .main-header .custom-outer-box12 {
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    padding-top: 12px;
    padding-right: 15px;
  }
}

@media (max-width: 1200px) {
  .header-style-two .custom-header-lower {
    background: #ffffff00;
    padding-right: 0px;
  }

  .owl-carousel .owl-item img {
    /* height: 0px; */
  }

  .custom-logo-box-01 {
    display: block !important;
    /* width: 100px; */
    height: auto;
  }

  .main-header .outer-box .logo-box {
    background-color: #ffffff00 !important;
    padding: 0px !important;
    width: 70vw;
  }
  .custom-logo-box-01 img {
    width: 74vw !important;
    height: auto;
  }
  .header-style-two .custom-header-lower {
    background: #ffffff00;
    padding-right: 0px;
    background-image: linear-gradient(
      315deg,
      #ffffff 0%,
      #5899e2 74%
    ) !important;

    padding-bottom: 9px;
  }
  .header-style-two .custom-header-top {
    display: none;
  }

  .header-style-two.main-header .outer-box .logo-box .logo {
    margin: 0px;
    max-width: 411px;
  }
  .main-header .custom-outer-box {
    display: flex;
    justify-content: space-between !important;
  }

  .custom-logo-box img {
    max-width: 100%;
    height: auto;
  }

  .small-mobile-custom {
    height: 27px;
    width: 55vw;
  }

  .custom-logo-box-01 img {
    width: 50vw;
    height: auto;
  }

  .header-top .custom-info-list {
    display: none;
  }
  .header-style-two .custom-header-lower {
    background: #ffffff00;
    padding-right: 0px;
  }

  .main-header .custom-outer-box12 {
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    padding-top: 12px;
    padding-right: 15px;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .sticky-header
    .custom-outer-box
    .custom-menu-area
    .main-menu-custom-sticky
    .navigation
    > li
    > ul,
  .main-menu-custom-sticky .navigation > li > .megamenu {
    position: absolute;
    left: -43% !important;
    top: 100%;
    width: 98.99vw;
    display: none;
    background: #ffffff;
    padding: 25px 0px 45px 0px;
  }

  .main-menu .navigation > li > ul,
  .main-menu .navigation > li > .megamenu {
    position: absolute;
    left: -160px !important;
    top: 100%;
    width: 98.99vw;
    display: none;
    background: #393185;
    padding: 25px 0px 45px 0px;
  }
  .custom-navigation {
    padding-left: 0px;
    /* padding-right: 0px !important; */
  }
  .header-style-two .header-lower {
    padding-right: 0px;
  }
  .main-menu-custom-sticky .custom-navigation li.dropdown a {
    font-size: 13px !important;
  }
  .main-menu .navigation > li.dropdown > a {
    padding-right: 11px;
  }
  .large-container {
    padding: 0px 0px;
  }
  .sticky-header .main-menu-custom-sticky .navigation > li.dropdown > a {
    padding-right: 6px !important;
  }
  .main-menu-custom-sticky .custom-navigation {
    padding-right: -1px;
  }
  .sticky-header .custom-outer-box .main-menu-custom-sticky .navigation > li {
    margin: 0px 10px !important;
  }
}

/* header-mega-menu start  */
.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu {
  position: absolute;
  left: -215px;
  /* left: -171px; */
  top: 100%;
  width: 100.99vw;
  display: none;
  background: #ffffff;
  padding: 25px 0px 45px 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-50 {
  margin-bottom: 50px;
}

.main-nav-dropdown-custom .nav-dropdown-custom li a {
  color: #fff;
  font-size: 30px;
}

.main-nav-dropdown-custom .nav-dropdown-custom {
  /* padding: 43px; */
}

.main-menu .custom-navigation .nav-width a {
  font-size: 16px;
  font-weight: 800;
}

.main-nav-dropdown-custom {
  padding-top: 20px;
  padding-bottom: 10px;
}

.custom-navigation {
  padding-right: 20px;
}
/* header-mega-menu  end */

/* new css start here  */
/* .main-menu .navigation > li > ul{
display: flex !important;
}
.main-menu .navigation > li > ul > li.nav-width > a{
    flex-basis: 33%;
} */

.custom-main-menu .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 22px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 600;
  font-family: var(--title-font);
  opacity: 1;
  color: #141417;
  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;
}

.custom-main-menu .navigation > li.dropdown > a:before {
  position: absolute;
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  top: 17px;
  right: 0px;
  font-weight: 500;
  transition: all 500ms ease;
}

.custom-header-top {
  position: relative;
  width: 100%;
  background-image: linear-gradient(315deg, #90b1d4 0%, #c7daf0 74%);
  padding: 0px 0px;
}

.custom-header-top .top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 15px;
  padding-top: 12px;
}

.custom-header-top .info-list {
  margin-right: 55px;
}

.custom-header-top .info-list li a {
  position: relative;
  display: inline-block;
  color: #201d1d;
}

.custom-header-top .info-list li {
  position: relative;
  margin-right: 40px;
  padding-left: 0px;
  color: #fff;
}

.custom-main-menu .navigation > li {
  position: inherit;
  float: left;
  z-index: 2;
  margin: 0px 29px;
}

.header-style-two .custom-header-top {
  padding-right: 25px;
}

.custom-nav-bar-scroll {
  width: 25vw;
}

.main-header .outer-box .custom-logo-box {
  position: relative;
  padding: 61px 90px 61px 0px;
  margin-top: -60px;
  background-image: linear-gradient(315deg, #ffffff 0%, #5899e2 74%) !important;
  z-index: 1;
}

.theme-btn.btn-one {
  background-color: #393185 !important;
}

.main-header .custom-outer-box {
  /* position: relative; */
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.main-menu .custom-navigation li a {
  font-size: 14px;
  color: white;
}
.custom-header-style-two .header-lower {
  background: #393185;
}
.main-menu .custom-navigation .nav-width a {
  color: #393185;
}
.sec-title h6 {
  display: block;
  font-size: 20px;
  line-height: 22px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #393185 !important;
}

.banner-carousel .content-box h2 span {
  color: #393185 !important;
}

.custom-Our-Services {
  padding-top: 80px;
}

.card-block-one .inner-box .custom-lower-content {
  position: relative;
  display: block;
  /* padding-top: 113px; */
}

marquee {
  color: #393185;
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
  /* background: #f5f5f5; */
  border-radius: 10px;
  margin-top: 20px;
  height: 353px;
}

.card-block-one .custom-inner-box:before {
  position: absolute;
  content: "";
  background: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  width: 100%;
  height: calc(100% - 2px);
  left: 0px;
  bottom: 0px;
  z-index: -1;
  border-radius: 15px;
}

.custom-Blog-bank {
  padding-top: 100px;
}
.custom-inner-box-img img {
  height: 32vh !important;
}

.custom-buttom-services a {
  color: white;
}
.custom-buttom-services {
  background-color: #5899e2;
}

.theme-btn.custom-btn-two {
  background-color: #393185;
}
.theme-btn.custom-btn-two a:hover {
  background-color: #b3ade9;
}

#index-popup .outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 9999999991;
  padding: 50% 0 0;
  background: rgb(0, 0, 0, 0.5);
}
#index-popup .inner {
  margin-top: -50px;
  width: 500px;
  height: 80vh;
  /* margin-left: -489px; */
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: 0 0;
  z-index: 9999999992;
  background: #fff;
  -webkit-box-shadow: 0 0 12px 1px #333333;
  box-shadow: 0 0 12px 1px #333333;
  /*margin-top: -50px;width:600px;margin-left:-489px;position:absolute;top:100px;left:60%;background:0 0;
  z-index:9999999992;background:#fff;-webkit-box-shadow: 0 0 12px 1px #333333;box-shadow: 0 0 12px 1px #333333;*/
}

#index-popup .inner p {
  font: 400 22px/28px "Open Sans", sans-serif;
  padding: 0px 0px 20px 0px;
  margin: 0px 0px 0px 0px;
  padding: 30px;
  margin: 0px 0px 0px 0px;
  color: #000;
  text-align: center;
}
#index-popup a {
  text-decoration: none;
  color: #5e960e;
}
#index-popup .video-close {
  float: right;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  color: #7b7b7b;
  padding: 10px 10px 7px 0;
}
#index-popup .video-close a {
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
#index-popup .video-close a span {
  color: #fff;
  text-transform: uppercase;
  padding: 0 0 0 5px;
  color: #000;
}

#index-popup .outer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 9999999991;
  padding: 50% 0 0;
  background: rgb(0, 0, 0, 0.5);
}

.owl-carousel-custom .owl-stage-outer {
  width: 100%;
}

.owl-carousel-custom .owl-nav button.owl-prev {
  position: absolute;
  outline: none;
  left: 0;
  width: 35px !important;
  height: 35px !important;
  font-size: 36px !important;
  text-align: center !important;
  background: rgb(255, 255, 255) !important;
}
.owl-carousel-custom .owl-nav button.owl-next {
  position: absolute;
  outline: none;
  right: 0;
  width: 35px !important;
  height: 35px !important;
  font-size: 36px !important;
  text-align: center !important;
  background: rgb(255, 255, 255) !important;
}

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

.main-slider .owl-nav .owl-prev span,
.main-slider .owl-nav .owl-next span {
  position: relative;
  top: -20px;
  font: initial;
  font-size: 38px;
  color: black;
  left: -5px;
}
.custom-banner12 {
  margin-top: 120px;
}

.carousel-inner > .carousel-item > a img {
  height: 80vh;
  width: 100%;
}

.carousel-item .carousel-caption-custom {
  position: absolute;
  right: 45%;
  bottom: 12.25rem;
  left: 9%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: start;
}

.carousel-item .carousel-caption-custom h5 {
  font-size: 60px;
  font-weight: 700;
  color: #000000;
}
.carousel-item .carousel-caption-custom p {
  font-size: 33px;
  font-weight: 500;
}
.carousel-indicators [data-mdb-target] {
  display: none;
}
.sticky-header .main-menu-custom-sticky .navigation > li > a {
  padding-top: 20px;
  padding-bottom: 20px;
}
.sticky-header .main-menu-custom-sticky .navigation > li.dropdown > a {
  padding-right: 11px;
}
.sticky-header .main-menu-custom-sticky .navigation > li.dropdown > a:before {
  top: 23px;
}

.sticky-header .main-menu-custom-sticky .navigation > li.dropdown > a:before {
  position: absolute;
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  top: 22px;
  right: -8px;
  font-weight: 500;
  transition: all 500ms ease;
}
.main-menu-custom-sticky ul {
  padding-left: 0px;
}
.sticky-header .large-container {
  background-color: #393185;
  padding-left: 0px;
}

.sticky-header .large-container .custom-outer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-menu-custom-sticky .navigation > li > ul > li > a,
.main-menu-custom-sticky .navigation > li > .megamenu li > a {
  position: relative;
  display: block;
  padding: 9px 11px;
  line-height: 24px;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  font-family: var(--title-font);
  color: #fff;
  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;
}

.custom-logo-box-01 {
  display: none;
}

.image_block_two .image-box .image {
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  /* height: 60v; */
}

.custom-menu-area .main-menu-custom-sticky .clearfix ul li ul {
  position: absolute;
  left: -675px;
  /* left: -475px; */
  top: 100%;
  width: 98.99vw;
  display: none;
  background: #ffffff;
}

.custom-main-footer .widget-title h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 800;
  color: #fff;
  padding-left: 10px;
}
.custom-menu-area-mobile .mobile-nav-toggler {
  padding: 8px !important;
}

.custom-header-style-two .custom-header-top .custom-links-list {
  position: relative;
  display: flex;
  align-items: center;
  left: 66px;
}
.custom-list-style-one {
  display: flex;
  justify-content: space-between;
  padding-left: 0px;
}
.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a,
.main-menu .navigation > li > ul > li > a:hover,
.main-menu .navigation > li > .megamenu li > a:hover,
.main-menu .navigation > li > ul > li > ul > li > a:hover,
.header-top .links-list li a:hover,
.header-top .info-list li i,
.header-top .info-list li a:hover,
.banner-carousel .content-box h2 span,
.sec-title h6,
.content_block_one .content-box .inner-box .single-item .icon-box,
.service-block-one .inner-box .icon-box,
.content_block_two .content-box .form-group input[type="button"],
.funfact-block-one:first-child .inner-box .icon-box,
.theme-btn.btn-three,
.news-block-one .inner-box .post-date i,
.news-block-one .inner-box h3 a:hover,
.news-block-one .inner-box .post-info li i,
.news-block-one .inner-box .post-info li a:hover,
.scroll-to-top .scroll-bar-text,
.main-footer a:hover,
.footer-bottom p a,
.sec-title h2 span,
.feature-block-two .inner-box .icon-box,
.feature-block-two .inner-box h3 a:hover,
.content_block_four .content-box .list-item li:before,
.card-block-one .inner-box .lower-content h3 a:hover,
.processing-block-one:hover .inner-box .count-text,
.news-block-two .inner-box .lower-content h3 a:hover,
.news-block-two .inner-box .lower-content .post-info li i,
.news-block-two .inner-box .lower-content .post-info li a:hover,
.page-title .bread-crumb li a:hover,
.team-block-one .inner-box .lower-content h3 a:hover,
.team-block-one .inner-box:hover .lower-content .designation,
.team-details .content-box .designation,
.team-details .content-box .info-list li a:hover,
.career-block-one .inner-box .info-box li i,
.career-block-one .inner-box .btn-box a,
.career-details-content .content-one span,
.career-sidebar .info-list li i,
.news-block-three .inner-box .lower-content .post-info li i,
.news-block-three .inner-box .lower-content .post-info li a:hover,
.news-block-three .inner-box .lower-content h3 a:hover,
.news-block-three .inner-box .lower-content .btn-box a,
.blog-sidebar .search-widget .search-inner .form-group input:focus + button,
.blog-sidebar .search-widget .search-inner .form-group button:hover,
.blog-sidebar .category-widget .category-list li a:before,
.blog-sidebar .category-widget .category-list li a:hover,
.blog-sidebar .post-widget .post h5 a:hover,
.blog-sidebar .post-widget .post .post-date i,
.info-block-one .inner-box p a:hover {
  color: #5899e2 !important;
}

.switcher .switch_btn button,
button.rtl,
button.ltr,
.main-header .outer-box .logo-box:before,
.theme-btn.btn-one,
.theme-btn.btn-two:before,
.theme-btn.btn-two:after,
.main-header .outer-box .logo-box .shape,
.main-header .outer-box .logo-box:after,
.banner-section .owl-nav button:hover,
.feature-block-one .inner-box .icon-box,
.feature-block-one .inner-box:before,
.image_block_one .image-box .experience-box,
.content_block_one .content-box .inner-box .single-item .icon-box:before,
.service-block-one .inner-box:before,
.content_block_two .content-box .form-group input[type="button"]:hover,
.video-section .inner-box .video-btn a,
.funfact-block-one:last-child .inner-box,
.apps-section .content-box .btn-box a:hover,
.subscribe-section,
.main-footer .social-links li a:hover,
.main-footer .links-widget .links-list li a:hover:before,
.nav-style-one .owl-nav button:hover,
.service-style-two .tab-btns li:before,
.service-style-two .tab-btns li:after,
.processing-block-one .inner-box .count-text,
.processing-block-one:before,
.exchange-section .tab-btns li:before,
.exchange-section .tab-btns li:after,
.apps-section.alternat-2,
.service-block-one .inner-box .shape:before,
.requirements-block-one .inner-box h4:before,
.team-block-one .inner-box .image-box .social-links li a:hover,
.team-details .content-box .social-links li a:hover,
.career-block-one .inner-box .btn-box a:hover,
.news-block-one .inner-box .theme-btn:before,
.news-block-one .inner-box .theme-btn:after,
.career-sidebar h4,
.news-block-three .inner-box .lower-content .post-date,
.news-block-three .inner-box .lower-content .btn-box a:hover,
.blog-sidebar .tags-widget .tags-list li a:hover,
.blog-details-content .list-item li:before,
.blog-details-content .post-tag-option .tags-list li a:hover,
.accordion .acc-btn .icon-box:before,
.info-block-one .inner-box .icon-box {
  background: #5899e2 !important;
}

.custom-funfact-block-one:last-child .inner-box {
  background: rgba(0, 0, 0, 0) !important;
}
.theme-btn:before,
.theme-btn:after {
  background-color: #000000;
}

.custom-Blog-bank .news-block-two .inner-box .lower-content {
  padding-top: 20px;
}

.main-header .outer-box .custom-logo-box {
  background-image: linear-gradient(315deg, #ffffff 0%, #5899e2 74%) !important;
}

.custom-loan-services ul {
  padding-left: 0px;
}

.custom-list-item {
  padding-left: 0px;
}

.custom-list-style-one li:before {
  color: #5899e2;
}

.custom-Our-Services .content_block_four .content-box .list-item li:before {
  border-color: #393185 !important;
}

.custom-card-block-one img {
  height: 33vh;
}

/* footer  */
.custom-footer-QR-img img {
  width: 185px;
}

.custom-funfact-style-two {
  position: relative;
  background: #393185;
  padding: 35px 0px;
}

.custom-funfact-style-two .funfact-block-one .inner-box .icon-box {
  background: rgb(247 247 247) !important;
}

/* -----history section css start here  ---- */

.custom-banner-history {
  padding-top: 129px;
}

.history-banner {
  background-image: url("https://images.unsplash.com/photo-1501167786227-4cba60f6d58f?fm=jpg&q=60&w=000&3ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8YmFua3xlbnwwfHwwfHx8MA%3D%3D");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 50vh;
}

.child-history-banner {
  background-color: #0000005e;
  height: 100%;
}

.custom-content-box {
  height: 100%;
}

.custom-sec-title-history {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: 800;
  height: 100%;
}

.custom-sec-title-history p {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
}

.sticky-header .custom-outer-box .main-menu-custom-sticky .navigation > li {
  margin: 0px 16px;
}

.custom-title {
  font-size: 17px;
  font-weight: 700;
  color: #5899e5;
}

.custom-info-list .custom-header-click:hover {
  color: #393185;
}

.custom-height-pop img {
  height: 82vh;
}

.custom-history-image img {
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.history-section-main {
  padding-top: 25px;
}

.history-title-GUCb h1 {
  font-weight: 800;
  color: #393185;
  font-size: 66px;
  line-height: 62px;
}

.history-title-GUCb {
  padding-top: 50px;
}

.news-block-two .custom-inner-box-img:before {
  border-radius: 0px 0px 20px 20px;
}
.custom-loan-image img {
  border-radius: 10px;
}
.news-block-two .custom-services-inner-box:before {
  border-radius: 0px 0px 20px 20px;
}
.custom-header-style-two.main-header .outer-box .logo-box {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.custom-main-footer {
  background-color: #393185;
}
.custom-video-section {
}
.banner-carousel .custom-slide-item {
  height: 100vh;
  padding: 280px 0px 225px 0px;
}
.service-block-one .image-box img {
  height: 199px;
}
.custom-sec-title h2 {
  /* font-size: 41px; */
}
.feature-block-two .inner-box h3 a {
  font-size: 15px;
}
.feature-block-two .inner-box p {
  font-size: 13px;
}
.feature-style-two .custom-sec-title:before {
  background-color: #67a1e4;
}
.owl-carousel .owl-nav button.owl-prev:hover {
  background-color: #393185;
  color: white;
}
.owl-carousel .owl-nav button.owl-next:hover {
  background-color: #393185;
  color: white;
}

/* .custom-navigation li a .custom-icon-hover:hover{
   color: #e74c3c;
} */
.custom-navigation li a .custom-nav-hover {
  color: white;
}
.custom-main-menu .custom-navigation > li.dropdown > .custom-icon-hover:hover {
  color: #5899e2 !important;
}

.owl-carousel .owl-nav button.owl-prev {
  display: none;
}
.owl-carousel .owl-nav button.owl-next {
  display: none;
}

.feature-block-two .inner-box {
  padding: 10px 0px 11px 0px;
}
.theme-btn.btn-one {
  background-color: #67a1e4 !important;
}
.theme-btn.btn-one:hover {
  /* background-color: bkla; */
}
.custom-icon-box i {
  /* font-size: 64px; */
  color: #3498db;
}
.funfact-block-one:first-child .inner-box .icon-box {
  background: rgb(88 153 226 / 68%);
}
.funfact-block-one:first-child .inner-box .icon-box {
  color: white !important;
}
.content_block_two .content-box .form-group input[type="button"] {
  border: 1px solid #67a1e4 !important;
}
.service-style-three.service-page-2 {
  background: #ffffff;
}
.testimonial-style-two {
  background: #e5e8e9;
}
.process-section {
  background: #ffffff;
}
.custom-mobile {
  width: 26.333333%;
}
.processing-block-one .inner-box .count-text:after {
  border-color: #5899e2 !important;
}

.custom-footer-bottom {
  padding: 0px 0px;
}

.containerFluid {
  width: 100% !important;
  padding-inline: 60px !important;
  max-width: 100% !important;
}

.custom-main-footer {
  background-image: linear-gradient(
      90deg,
      rgb(88 153 226 / 65%),
      rgb(88 153 226 / 70%)
    ),
    linear-gradient(rgb(0 0 0 / 52%), rgba(0, 0, 0, 0.33)),
    url("../images/goa-beach.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
}

.custom-footer-top-title h4 {
  font-size: 18px;
}

.footer-top-border {
  border: 1px solid #5899e2;
  border-radius: 6px;
}

.custom-main-footer .widget-section {
  padding: 80px 0px 10px 0px;
}

.service-block-one .inner-box {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.video-section {
  position: relative;
  padding: 10px 0px 210px 0px;
  overflow: hidden;
}

.custom-carousel-item img {
  /* height: 475px; */
}

/* rutvik css start */
.justify-content-space-between {
  justify-content: space-between !important;
}

.saveACTab {
  padding-inline: 45px !important;
}
/* rutvik css end */
