/********** Template CSS **********/
:root {
    --primary: #1e1ebf;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0c0c0c;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.btn-check:focus+.btn, .btn:focus{box-shadow:none;}
h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 73px
}
#navbarCollapse .nav-item.nav-link{
	margin-bottom:0;
}
#navbarCollapse ul:hover ul.dropdown-menu{
    display: block;
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.15);
    margin-top: 10px;
    width: 1037%;
    left: -800%;
    top: 162%;
}
.nav-item .dropdown a{color:var(--dark);} 
.nav-item li{list-style:none;} 
.navbar .navbar-nav .nav-item li .dropdown-menu li a{
    padding: 5px;
    font-size: 0.75rem;}
.nav-item li .dropdown-menu li{
    list-style: none;
    padding-bottom: 5px;
    font-size: 0.85rem;
} 
.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    outline: none;    position: relative;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.bg-dark {
    background-color: #090f35 !important;
}
.btn-primary {
    background-color: #1e1ebf;
    border-color: #1e1ebf;
}
.text-primary {
    color: #000000 !important;
}
.carousel-item {
    height: 400px;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
    color: #000;}
h1{font-size:2rem;}	
@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
	
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: none;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
       /* transition: .5s;*/
    }
	 .navbar .nav-item .dropdown-menu .col-lg-3{padding-right:0px;}
	.navbar .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: 18px;
    left: 50%;
    background: var(--primary);
    transition: .5s;
}
.navbar .navbar-nav .nav-item li .dropdown-menu li a::before{content:none;}
.navbar .navbar-nav .nav-link:hover::before, .navbar .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
}

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        /* transition: .5s;*/
        opacity: 1;
    }
}
/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 135px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0%;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgb(36 38 37 / 70%);
    z-index: 1;
    width: 100%;
    color: #000;
    font-weight: bold;
}
.carousel-caption .display-1{text-align:center;}
.carousel-caption-herobanner{right:auto;background: none;text-align: justify;font-size: 1.1em;width: 60%;}
.right-carousel-caption{right:0;left:auto;bottom:auto;}
.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
	.carousel-caption-herobanner .display-1{color:#fff;}
	.carousel-caption-herobanner{background: rgb(36 36 97 / 91%);
    width: 100%;
    color: #fff;bottom:0;}
}
@media (min-width: 1200px){
.display-5 {
    font-size: 2.6rem;
}
}
.service-item .service-icon {
    margin: 0 auto 35px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(73 73 147 / 68%);
    border-radius: 2px;
    transform: rotate(-45deg);
}
.supportServices .service-item .service-icon {
    margin: 15px auto;
    width: 35px;
    height: 35px;
}
.service-item .service-icon i {
    transform: rotate(45deg);
}
.page-header {
    background: linear-gradient(rgba(15, 66, 41, .6), rgba(15, 66, 41, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}
.footer p, .footer a {
    font-size: 0.8rem;
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -7px;
        z-index: 1;
    }
}

.bg-light {
    background-color: rgb(30 30 191 / 12%) !important;
}
/*** Facts & Quote ***/
.facts,
.quote {
    background: rgb(20 17 44 / 92%);
}


/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}
.supportServices .service-text {
    padding: 0.2rem !important;
}
.service-item:hover .service-text {
    background: rgb(251 251 251);
    cursor:pointer;
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}
#WhyChooseUs_Banking .service-item:hover .service-text p {
    color: #525368;
}
#WhyChooseUs_Banking .service-item:hover .service-text {
    
    cursor: auto;
}
.accordion-button:not(.collapsed) {
    color: #1e1ebf;
    background-color: rgb(30 30 191 / 7%);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: rgb(249 249 249 / 90%);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}

/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: rgb(231 231 231 / 33%);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}
.parallex-window{background: linear-gradient( rgba(20, 17, 44, 0.95) 100%, rgba(20, 17, 44, 0.95)100%),url('../img/carousel-1.jpg');
background-position:center top;}
#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(49 49 60 / 75%);
    transition: .5s;
}
.btn-primary:hover,.btn-primary:focus,.btn-primary:active {
    color: #fff;
    background-color: rgb(30 30 191 / 64%);
    border-color: rgb(30 30 191 / 64%);
	outline:0;
    box-shadow: none !important;
}
.btn-check:checked+.btn-primary:focus, .btn-check:active+.btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgb(30 30 191 / 64%);
}
.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    font-size: 0.8rem;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #20264c;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: var(--primary);
}
span.logoColor {
    color: #1e1ebf;
}
body{font-family: 'Montserrat', sans-serif;font-size: 0.9rem;}
@media (min-width: 1200px) {
.display-1 {
    font-size: 3rem;
}
}
@media (max-width: 1199px) {
  
	.navbar .navbar-nav .nav-link,.navbar .navbar-brand, .navbar a.btn{font-size: 12px;}
	.navbar .navbar-nav .nav-item li .dropdown-menu li a {
    font-size: 0.7rem;
}
	h1 {
    font-size: 2rem;
}
body{font-size: 0.8rem;}
.display-1{font-size:calc(0.3rem + 4.5vw);}
h4, .h4 {
    font-size: calc(0.875rem + .3vw);
}
.btn{font-size:0.8rem}
.section-title .display-1{font-size:calc(0rem + 4.5vw);}
.display-5{font-size:calc(0.925rem + 2.1vw)}
.fs-5 {
    font-size: 0.825rem !important;
}
.service-item .service-text .btn{width:28px;}
}
@media (max-width: 991px) {
	#navbarCollapse ul:hover ul.dropdown-menu{
	
    width: 100%;
    left: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 200px;
	}
  .team-item{
    text-align: center;}
	
   .team-item img{  max-height: 300px;}
  #header-carousel .carousel-item{min-height:auto;}
  .carousel-control-prev-icon, .carousel-control-next-icon{width:2rem;height:2rem;}
  h1 {
    font-size: 1.8rem;
}
.ps-4 {
    text-align: center;
    border-bottom: 1px solid #dee2e6 !important;
    padding-bottom: 30px;
    border-left: none !important;
}
.facts, .quote {
    background: rgb(20 17 44 / 92%) !important;
}
.d-none-mobile{padding: 0 !important;}
}
/* Icon 1 */

#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
  width: 30px;
  height: 23px;
  position: relative;
  margin: 0px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}
.navbar-light .navbar-toggler{border: none;}
button:focus:not(:focus-visible){
    box-shadow: none;}
#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #1e1ebf;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 9px;
}

#nav-icon1 span:nth-child(3) {
  top: 18px;
}

#nav-icon1.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
