/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html,body{ -webkit-overflow-scrolling : touch !important}
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  list-style:none!important;
}

li::marker{
    display:none!important;
}

a {
  color: #7093C8;
  text-decoration: none;
}

a:hover {
  color: #ffd584;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: poppins;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #7093C8;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #ffffff;
  line-height: 0;
}

.back-to-top:hover {
  background: #7093C9;
}

.back-to-top:hover i {
  color: #ffffff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #7093C8;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 1ms !important;
  }
  .social-links{
      text-align:center;
  }
}
@media screen and (max-width:768px) {
  h1.w3-center.aos-init.aos-animate{
    font-weight: 700!important;
    font-size: 32px;
    text-align: center!important;
  }
}
h1.w3-center.aos-init.aos-animate{
  color:#012970; 
  font-weight: 600;
  font-family:poppins;
}

@media screen and (min-width:1400px) {
  .container.aos-init.aos-animate{
    max-width: 1360px;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 17px 5px;
  padding-left: 0px;
}
@media screen and (max-width: 768px){
    #header{
        padding:17px 0px!important;
        padding-left:0px!important;
        
    }   
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgb(255, 255, 255);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0037ff;
}

#header .logo a span {
  color: #7093C8;
}

#header .logo img {
  max-height: 105px!important;
}


@media (min-width: 1366px) {
    #header .logo img {
  max-height: 90px!important;
}
}



/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #012970;
  border-radius:50px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  margin-top: 5px;
  transition: 0.3s;
  font-size: 15px;
  display: inline-block;
  border: 2px solid #012970;
}

.get-started-btn:hover {
  background: #012970;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin-left:40px!important;
  margin-right:25px!important;
}
@media screen and (max-width:750px){
    .navbar {
      padding: 0;
      margin-left:0px!important;
      margin-right:0px!important;
    }
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  border-bottom: 1px solid white;
  padding-bottom: 6px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 12px 10px 12px;
  font-size: 16px;
  font-weight: 600;
  color: #012970;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus::before,
.navbar li:hover>a {
  color: rgb(0, 0, 0);
  border-bottom: 3px solid #012970;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul li:hover>a{
  color:white;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #000000;
  font-weight: 400;
}
@media screen and (max-width:768px){
    .navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  color: #000000;
  font-weight: 400;
}
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: #012970;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #23466e;
  font-size: 40px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
  .get-started-btn{
    visibility: hidden;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 15px;
  left: 50%;
  padding: 60px 0;
  background-color: #0d417d;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 14px 20px;
  font-size: 18px;
  color: #e4e4e4;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fff;
  background-color: #012970;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #0d417d;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #e4e4e4;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  background-color: #012970;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 95vh;
  background: url(../img/about-bg.png) top center no-repeat!important;
}

#hero .container {
  padding-top: 72px;
}


#hero .btn-watch-video {
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 12px 0 0 25px;
  color: #2416a1;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #0e1a46;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #1a2798;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 75vh!important;
    text-align: center;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero{
    height: 50vh;
    text-align: center;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
  
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 0px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 108px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.services.section-bg{
margin-top: -10px;
margin-bottom: 25px;
}

.services .icon-box {
box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
padding: 10px 10px;
border-radius: 10px;
transition: all ease-in-out 0.4s;
background: #fff;
}

.services .icon-box .icon {
margin-bottom: 10px;
text-align: center;
}

.services .icon-box .icon img {
color: #47b2e4;
font-size: 36px;
transition: 0.3s;
}

.services .icon-box h4 {
font-weight: 500;
margin-bottom: 8px;
font-size: 17px;
text-align: center;
}

.services .icon-box h4 a {
color: #37517e;
transition: ease-in-out 0.3s;
font-size: 17px;
font-weight: 700;
}

.services .icon-box p {
line-height: 19px;
font-size: 12px;
padding: 2px;
font-weight: 550;
margin-bottom: 0;
text-align: center;
}

.services .icon-box:hover {
border: 2px solid #18407c;
}

/**.services .icon-box:hover h4 a {
color: #47b2e4;
}*/

#cibilr{
/*position: relative;*/
animation-name: cibilr;
animation-duration: 5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes cibilr {
0%   {left:30px;}
100% {left:210px;}
}
@-webkit-keyframes cibilr {
0%   {left:30px;}
100% {left:210px;}
}

#cibily{
/*position: relative;*/
animation-name: cibily;
animation-duration: 5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes cibily {
0%   {left:-30px;}
100% {left:150px;}
}
@-webkit-keyframes cibily {
0%   {left:-30px;}
100% {left:150px;}
}

#cibilg{
/*position: relative;*/
animation-name: cibilg;
animation-duration: 5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes cibilg {
0%   {left:-90px;}
100% {left:90px;}
}
@-webkit-keyframes cibilg {
0%   {left:-90px;}
100% {left:90px;}
}

#cibilgg{
/*position: relative;*/
animation-name: cibilgg;
animation-duration: 5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes cibilgg {
0%   {left:-150px;}
100% {left:30px;}
}
@-webkit-keyframes cibilgg {
0%   {left:-150px;}
100% {left:30px;}
}


#cibilp{
position: relative;
animation-name: cibilp;
animation-duration: 5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes cibilp {
0%   {left:22px;}
100% {left:202px;}
}
@-webkit-keyframes cibilp {
0%   {left:22px;}
100% {left:202px;}
}

/* 
---------------------------------------------
About Us Style
--------------------------------------------- 
*/

#about {
margin-top: 10px;
}

@media (max-width: 992px){
.about-us .h2{
  margin-top: 30px;
}
.about-us {
  background-image: url(../img/about-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 282px 0px 400px 0px!important;
}
}

.about-us {
background-image: url(../img/about-bg.png);
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
padding: 120px 0px 170px 0px;
}

.about-us .left-image {
margin-right: 45px;
}

.about-us .services .item {
margin-bottom: 30px;
}

.about-us .services .item .icon {
float: left;
margin-right: 25px;
}

.about-us .services .item .icon img {
max-width: 70px;
}

.about-us .services .item h4 {
color: #012970;
font-size: 20px;
font-weight: 700;
margin-bottom: 12px;
}

.about-us .services .item p {
color: #4A4A4A;
}
.slide-container{
max-width: 1420px;
width: 100%;
padding: 40px 0;
}
.slide-content{
margin: 0 40px;
overflow: hidden;
border-radius: 25px;
}
.card{
border-radius: 25px;
background-color: #FFF;
}
.image-content,
.card-content{
display: flex;
flex-direction: column;
align-items: center;
padding: 10px 14px;
}
.image-content{
position: relative;
row-gap: 5px;
padding: 25px 0;
}
.overlay{
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
background-color: #4070F4;
border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after{
content: '';
position: absolute;
right: 0;
bottom: -40px;
height: 40px;
width: 40px;
background-color: #4070F4;
}
.overlay::after{
border-radius: 0 25px 0 0;
background-color: #FFF;
}
.card-image{
position: relative;
height: 150px;
width: 150px;
border-radius: 50%;
background: #FFF;
padding: 3px;
}
.card-image .card-img{
height: 100%;
width: 100%;
object-fit: cover;
border-radius: 50%;
border: 4px solid #4070F4;
}
.name{
font-size: 18px;
font-weight: 500;
color: #333;
}
.description{
font-size: 14px;
color: #707070;
text-align: center;
}
.button{
border: none;
font-size: 16px;
color: #FFF;
padding: 8px 16px;
background-color: #4070F4;
border-radius: 6px;
margin: 14px;
cursor: pointer;
transition: all 0.3s ease;
}
.button:hover{
background: #265DF2;
}

.swiper-navBtn{
color: #6E93f7;
transition: color 0.3s ease;
}
.swiper-navBtn:hover{
color: #4070F4;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
font-size: 35px;
}
.swiper-button-next{
right: 0;
}
.swiper-button-prev{
left: 0;
}
.swiper-pagination-bullet{
background-color: #6E93f7;
opacity: 1;
}
.swiper-pagination-bullet-active{
background-color: #4070F4;
}

@media screen and (max-width: 768px) {
.slide-content{
  margin: 0 10px;
}
.swiper-navBtn{
  display: none;
}

    #services1{
    display:block!important;
} 
}
@media screen and (min-width:768px){
   #services1{
    display:none!important;
} 
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #061131!important;
  padding: 0 0 20px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #0c1f54!important;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #7093C8;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #7093C8;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #7093C8;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #7093C8;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #7093C8;
  color: #00106b;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #47b2e4;
}

#footer .copyright {
  text-align: center;
  padding-top: 20px;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
#footer .credits a:hover{
  color: #7093C8;
}

#instanrQuery-form .form-control::-webkit-input-placeholder {
  color: rgba(79, 79, 79, 0.69);
}

.form-group {
  display: block !important;
}

.form-container {
  background-color: #F2F5FC;
  border-top: 10px solid #1D951B;
  border-radius: 5px;
}

.form-head {
  padding: 30px 20px;
}

.form-container h1 {
  color: #012970;
  font-family: poppins;
  font-size: 32px;
  margin: 0px;
  font-weight: 600;
  padding: 0;
  text-transform: capitalize;
  text-align: center;
  text-shadow: 0 0 0px rgb(0, 0, 0);
}

.form-container p {
  font-weight: normal;
  font-size: 14px;
  padding: 0px;
  color: #363636;
  text-transform: inherit;
  margin: 10px 0px 0px 0px;
}

.inner-addon {
  position: relative;
}

.inner-addon .fa {
  position: absolute;
  padding: 16px 40px;
  pointer-events: none;
  color: #fb7301;
}

.right-addon .fa {
  right: 0px;
}

.right-addon input {
  padding-right: 30px;
}

select {
  padding: 0px;
  color: rgba(255, 255, 255, 0.69) !important;
}

option {
  color: #717171!important;
}

.style-option {
  color: rgba(255, 255, 255, 0.69) !important;
}

#instanrQuery-form .form-group {
  margin-bottom: 30px;
  padding: 0px 25px;
}

#instanrQuery-form .form-control {
  font-family: 'Roboto', sans-serif;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #4f4f4f;
  color: #FFFFFF;
  width: 100%;
  height: 57px;
}

#instanrQuery-form .form-control:focus {
  border: 2px solid #e65122;
}

#instanrQuery-form .btn-submit {
  background: #7093C8;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin: 10px 20px 20px;
  display: inline-block;
  color: #ffffff;
  width: 93%;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  text-transform: capitalize;
  border-radius: 8px;
  padding: 16px 24px;
  border: none;
}

label.error {
  color: red;
  text-align: left;
  display: block;
  margin: 0px;
}

.expMessage {
  margin-top: 101px;
}

.formOverlay:before {
  content: "\f110";
  font-family: fontawesome;
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
  color: #77b127;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -5%;
  font-size: 56px;
  margin-top: -34px;
}

.formOverlay {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.alert .message-icon {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  text-align: center;
  border: 1px solid #9F9F9F;
  border-radius: 50%;
  line-height: 30px;
}

.form-control.error {
  border-color: rgba(166, 0, 0, 0.4) !important;
  -webkit-box-shadow: 0 1px 1px rgba(56, 165, 74, 0.1) inset, 0 0 4px rgba(166, 0, 0, 0.4) !important;
  -moz-box-shadow: 0 1px 1px rgba(56, 165, 74, 0.1) inset, 0 0 4px rgba(166, 0, 0, 0.4) !important;
  box-shadow: 0 1px 1px rgba(56, 165, 74, 0.1) inset, 0 0 4px rgba(166, 0, 0, 0.4) !important;
}

#submit-control {
  color: white;
  font-style: italic;
  font-size: large;
}
.form-check-input[type=checkbox]{
margin: 4px -16px !important;
}
@media screen and (max-width:800px) {
.about.container.row.col-sm-6.card{
    padding: 0px;
}
.about.container.row.col-sm-6.card.card-body{
  padding-right: 2px;
}
.card-title{
  text-align: center!important;
}
.about,h4{
  font-size: 16px!important;
  padding-left:1px;
  padding-right:1%;
}
#aboutmain{
font-size: 20px!important;
padding-left: 4%!important;
padding-right: 4%!important;
}
#about_main{
  font-size: 20px!important;
  padding-left:4%!important;
  padding-right:4%!important;
}
}
#main-title{
font-size: 16px;
}
#aboutmain{
font-size: 16px!important;
padding-left: 34%;
padding-right: 34%;
}
#about_main{
  font-size: 16px!important;
  padding-left:27%;
  padding-right:27%;
}
.css-slider-wrapper {
  display: block;
  background: #FFF;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  scroll-snap-type: x mandatory;
}
/* Slider */
.slider {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  -webkit-transition: -webkit-transform 1600ms;
  transition: -webkit-transform 1600ms, transform 1600ms;
  -webkit-transform: scale(1);
  transform: scale(1);
  scroll-snap-align: start;
}
 
/* Slides Background Color */
.slide-1 {
  left: 0;
}
.slide-2 {
  left: 100%
}
.slider {
  display: flex;
  justify-content: flex-start;
  background: url(../img/about-bg.png) top center no-repeat!important;
}
.slider-content {
  width: 635px;
  padding-left: 100px;
  
}
/* Slider Inner Slide Effect */
.slider h2 {
  margin: 0 0 6px 0;
  font-size: 48px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  line-height: 56px;
  color: #012970;
}

.slider h4 {
  color: #444;
  margin-top: 14px;
  margin-bottom: 25px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  font-size: 22px;
}
 
.slider > img {
  position: absolute;
  right: 13%!important;
  bottom: 30%!important;
  width: 30%;
  opacity: 0;
  -webkit-transform: translateX(500px);
  transform: translateX(500px);
}
 
.slide-1 > img {
  right: 0;
}
 
.buy-now-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #012970;
}
 
.buy-now-btn:hover {
  background: #209dd8;
}
 
 
.slider .buy-now-btn:focus,
.navigation .login-btn:focus {
  outline: none;
}
/* Animations */
.slider h2 {
  -webkit-transition: opacity 800ms, -webkit-transform 800ms;
  transition: transform 800ms, opacity 800ms;
  -webkit-transition-delay: 1s; /* Safari */
  transition-delay: 1s;
}
.slider h4 {
  -webkit-transition: opacity 800ms, -webkit-transform 800ms;
  transition: transform 800ms, opacity 800ms;
  -webkit-transition-delay: 1; /* Safari */
  transition-delay: 1s;
}
.slider>img {
  -webkit-transition: opacity 800ms, -webkit-transform 800ms;
  transition: transform 800ms, opacity 800ms;
  -webkit-transition-delay: 1s; /* Safari */
  transition-delay: 1s;
}

/* Slider Pagger */
.slider-pagination {
  position: relative;
  bottom: 65px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: space-between;
}
.slider-pagination label {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: rgb(69, 21, 191);
  margin: 0 10px;
  cursor: pointer;
}
/* Slider Pagger Event */
.slide-radio1:checked ~ .slider-pagination .page1,
.slide-radio2:checked ~ .slider-pagination .page2,
.slide-radio3:checked ~ .slider-pagination .page3,
.slide-radio4:checked ~ .slider-pagination .page4 {
width: 14px;
height: 14px;
border: 2px solid #ea2e49;
background: transparent;
}

/* Slider Slide Effect */
.slide-radio1:checked ~ .slider {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
.slide-radio2:checked ~ .slider {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}

.slide-radio1:checked ~ .slide-1 h2,
.slide-radio2:checked ~ .slide-2 h2,
.slide-radio3:checked ~ .slide-3 h2,
.slide-radio4:checked ~ .slide-4 h2,
.slide-radio1:checked ~ .slide-1 h4,
.slide-radio2:checked ~ .slide-2 h4,
.slide-radio3:checked ~ .slide-3 h4,
.slide-radio4:checked ~ .slide-4 h4,
.slide-radio1:checked ~ .slide-1 > img,
.slide-radio2:checked ~ .slide-2 > img,
.slide-radio3:checked ~ .slide-3 > img,
.slide-radio4:checked ~ .slide-4 > img {
-webkit-transform: translateX(0);
transform: translateX(0);
opacity: 1
}
/* Responsive */
@media only screen and (max-width: 768px) {
  .slider h2 {
    font-size: 20px;
  }
  .slider h4 {
    font-size: 16px;
  }
 
  .slider-content {
    padding: 0 2%;
    padding-top:10px;
  }
  .slider{
    height: 65%;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-content: stretch;
  }
 
  .navigation {
    padding: 0 2%;
  }
 
  .navigation-left {
    display: none;
  }
 
  .number-pagination {
    right: 2%;
  }
  .slider-pagination {
    left: 2%;
  }
 
  .slider .buy-now-btn {
    padding: 0 15px;
    width: 175px;
    height: 42px;
  }
 
  .slider .buy-now-btn:after {
    top: 15px;
  }
 
  .slider > img {
    right: 2%!important;
  }
 
  .slide-1 > img {
    align-items: center;
    top: 90px;
    width: 95%;
  }
  .slide-2 > img {
    align-items: center;
    top: 90px;
    width: 95%;
  }
}
.slide-radio1:checked{
  display: none;
}
.slide-radio2:checked{
  display: none;
}
.slide-radio1{
  display: none;
}
.slide-radio2{
  display: none;
}

/*---Popup open--*/
.modal-open {
  overflow: hidden;
  position:fixed;
  width: 100%;
}
@media(min-width: 768px){
  #top-packages .container { margin-bottom: 30px;}
  .packages {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 10px;
}
.price-tag {
  border-bottom: none !important;
  float: none !important;
}
}
@media(max-width: 767px){
  .mobile-button {display: block !important;}
  }
.mobile-button {
display: none;
background: #e0e4cb;
position: fixed;
bottom: 0px;
width: 100%;
z-index: 999;
text-align: center;
}
.mobile-button img {
margin: 0 0px;
width: 30%;
}
/*--------------popup close----------------*/
#popupbg{width: 100%; position: fixed;top:0;left: 0;z-index: 999999;height: 100%;background: rgba(0,0,0,0.7);display: none;}
.popinner{width: 548px;max-width: 92%;position: relative;top:50%;left: 50%;
  transform: translate(-50%,-50%);}


.popinner .poptitle{width: 100%;background: #1071b8;box-sizing: border-box;padding: 0 0 0 0; overflow: hidden;}
.popinner .poptitle h3{text-align: center;font-size: 22px;color: #fff;line-height: 40px;margin:0;padding: 0;}
.popinner .popbody{width: 100%;box-sizing: border-box;padding:10px 18px;background: #fff;}
.popinner .popbody p{font-size: 16px;line-height: 24px;display: block;color: #344a5f;margin: 0;padding: 0;}
.popinner .popbody .font18{font-size: 23px;line-height: 28px;display: block;color: #344a5f;margin: 10px 0;padding: 0;}
.popinner .popbody .bulletbg{width: 100%; margin: 0;padding: 0;}
.popinner .popbody .bulletbg ul{margin: 0;padding: 0;}
.popinner .popbody .bulletbg ul li{font-size: 16px;line-height: 24px;display: block;color: #344a5f;margin: 0;padding: 0;}
.popinner .popbody .bulletbg ul li span{font-size: 18px;padding-right: 10px;}
.uk-text-primary {
  color: #2d7091!important;
}
.uk-text-warning {
  color: #e28327!important;
}
.uk-text-success {
  color: #659f13!important;
}
.popinner .popbody .formbg{width: 90%;margin: 15px auto;padding: 0;overflow: hidden;}
.popinner .popbody .formbg input[type="text"], .popinner .popbody .formbg input[type="email"]{padding: 2px 12px;background: #fff;
  font-size: 1em;color: #333;
  width: 100%;line-height: 35px;
  border-radius: 4px;
  border: 1px solid #ccc;}
  .popinner .popbody .formbg input[type="submit"]{display: inline-block;font-size: 16px;color: #fff;border:0;
      border-radius: 10px;padding: 0 20px;margin-top: 15px; margin-bottom:10px; cursor: pointer;
      line-height: 40px;background: #1a1a1a;}
      
     
      
  .submitbg{width: 100%; text-align: center;}

.closepop{width: 100%;text-align: center;}
.closepop a{display: inline-block;font-size: 12px;line-height: 30px;color: #afafaf;margin: 0;padding: 0 10px;text-decoration: underline;}
.dclose{display:none;}
.form-control{ border-radius: 0px !important; }
@media screen and (max-width: 767px){
  .popinner .popbody .formbg input[type="text"]{margin-top: 10px;}
  .inclusions .read-collpse span {margin: 30px 0px 0px;}
  .inclusions .read-collpse {position: static !important;}
  .mobile-footer a {
  color: #fff;
}
.mobile-footer li {
  list-style: none;
}
}
/*--------------popup close----------------*/

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 30px;
}

.counts .content {
  padding-left:30px!important;
  padding-right:15px!important;
}


.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #222222;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 14px;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #3498db;
  float: left;
  line-height: 0;
}

.counts .content .count-box span {
  font-size: 34px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #222222;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 0px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  color: #484848;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 18px;
  color: #484848;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #6f6f6f;
}

.align-items-md-stretch{
  box-shadow: 0px 0px 5px 4px  #F7F7F7;
  margin-right: 20px;
  margin-bottom: 15px;
  width: 300px;
  height:80px;
  background-color: #ffffff;
  border-radius: 50px;
}

@media screen and (max-width:900px){
    .align-items-md-stretch{
        width: 230px;
        height:100px;
        margin-right:10px!important;
        border-radius:30px!important;
    }
}

.align-items-md-stretch:hover{
    border:2px solid #025D9B;
}

.row{
  justify-content: space-evenly;
} 


@media (max-width: 1024px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 70%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 70%!important;
  }
}

.services .service-box {
  box-shadow: none;
  height: 100%;
  padding: 50px 25px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
  margin-bottom: 10px;
}

.services .service-box .icon {
  font-size: 36px;
  padding: 40px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-box h3 {
  color: #444444;
  font-weight: 700;
}

.services .service-box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-align: center;
  font-size: 16px;
 
  border-radius: 5px;
  background-color: #025D9B;
  padding: 8px 20px;
}

.services .service-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-box.blue {
  border-bottom: 3px solid #FFFFFF;
}

.services .service-box.blue .icon {
  color: #FFFFFF;
  background: #FFFFFF;
}

.services .service-box.blue .read-more {
  color: #FFFFFF;
}

.services .service-box.blue:hover {
  background: #FFFFFF;
}

.services .service-box.orange {
  border-bottom: 3px solid #FFFFFF;
}

.services .service-box.orange .icon {
  color: #1D951B;
  background: #fde3c4;
}

.services .service-box.orange .read-more {
  color: #FFFFFF;
}

.services .service-box.orange:hover {
  background: #FFFFFF;
}

.services .service-box:hover h3,
.services .service-box:hover p,
.services .service-box:hover .read-more {
  color: #FFFFFF;
}

.services .service-box:hover .icon {
  background: #FFFFFF;
}
.section-header{
  text-align: center;
  margin-bottom: 10px;
  line-height: 30px;
  padding-left: 22%;
  padding-right: 22%;
}
.section-header h2{
  color:#012970; 
  margin-top:25px;
  text-align:center;
  font-weight:600; 
  font-size:38px;
  font-family:poppins
}
@media (max-width:750px){
  .section-header{
    padding-left: 1%;
    padding-right: 1%!important;
  }
}
.note{
  padding: 15px;
  font-size: 16px;
  text-align: center;
  color:white;
  background-color: #10589f;
}
.note2{
  text-align: center;
  background-color: rgb(65, 65, 65);
  color: white;
  font-size: 16px;
  padding: 10px;
  margin-bottom: 0rem!important;
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box!important;
  padding: 40px!important;
  padding-bottom: 0px!important;
  margin: 40px 40px!important;
  background: #fff!important;
  min-height: 300px!important;
  display: flex!important;
  flex-direction: column!important;
  text-align: center!important;
  transition: 0.5s!important;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 180px;
  border-radius: 1%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 40px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item button {
  border: none;
font-size: 24px;
color: #FFF;
padding: 8px 16px;
background-color: #FD6333;
border-radius: 6px;
margin: 24px;
cursor: pointer;
transition: all 0.3s ease;
}

.testimonials .testimonial-item button:hover{
  background: #265DF2;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 30px!important;
  position: relative!important;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #289942;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #289942;
}

.testimonials .swiper-slide {
  opacity: 0.3!important;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1!important;
  }

  .testimonials .swiper-pagination {
    margin-top: 0!important;
  }
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }
}

@media (max-width:750px){
    #Group_126{
        display:none;
    }
    .swiper-android .swiper-slide, .swiper-wrapper{
        height:500px!important;
    }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }
}
.footer .footer-newsletter {
  padding: 50px 0;
  background: #f6f9ff;
  border-top: 1px solid #e1ecff;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  color: #012970;
}

.footer .footer-newsletter form {
  margin-top: 20px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #e1ecff;
}

.footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 8px;
  width: calc(100% - 140px);
}

.footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 30px;
  margin: 3px;
  background: #4154f1;
  color: #fff;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter form input[type=submit]:hover {
  background: #5969f3;
}

.tmfbankicon2211181838{
  height: 100%; 
}
.tmfbankicon2211181838 img{
  height: 100%; 
}

#tmfanim2211181818{
      position: relative;
      animation-name: tmfanim2211181818;
      animation-duration: 50s;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
      /*animation-direction: alternate;*/
}
#tmfanim2211181818:hover {
  animation-play-state: paused;
}
@keyframes tmfanim2211181818 {
  0%   {left:0px;}
  50% {left:-2500px;}
  100% {left:0px;}
}
@-webkit-keyframes tmfanim2211181818 {
  0%   {left:0px;}
  50% {left:-2500px;}
  100% {left:0px;}
}

.tmf-wtmf-2211201729-bg{
  background-image: url(../img/6316-min.jpg);
  background-size: 80% ;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 50%;
}

.tmf-wtmf-2211201711-hr{
  height: 5px;
  width: 31%!important;
  background-color: gray;
  top: 50%;
  left: 69%;
}
.tmf-wtmf-2211201711-hl{
  height: 5px;
  width: 31%!important;
  background-color: gray;
  top: 50%;
  left: 0px;
}
.tmf-wtmf-2211201711-vd{
  height: 35%!important;
  width: 5px;
  background-color: gray;
  top : 65%;
  left: 50%;
}
.tmf-wtmf-2211201711-vt{
  height: 35%!important;
  width: 5px;
  background-color: gray;
  top : 0%;
  left: 50%;
}

.tmf-wtmf-2211201702{
  height: 40px;
  width: 250px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: white;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #444444;
  margin: 0 4px 8px 4px;
  transition: 0.3s;
  border-radius: 50px;
  border: 1px solid #fff;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #4154f1;
  border-color: #4154f1;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  /* left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px; */
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: 1s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid rgba(1, 41, 112, 0.2);
  border-left: 3px solid rgba(1, 41, 112, 0.2);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid rgba(1, 41, 112, 0.2);
  border-right: 3px solid rgba(1, 41, 112, 0.2);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #012970;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  background: #4154f1;
  margin: 10px 2px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  font-size: 24px;
  line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #5969f3;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1);
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4154f1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4154f1;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*=========================================================
	POST
===========================================================*/

/*----------------------------*\
	post
\*----------------------------*/

.post {
  margin-bottom: 40px;
}

.post .post-img {
  display: block;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.post .post-img:hover, .post .post-img:focus {
  opacity: 0.9;
}

.post .post-img>img {
  width: 100%;
  height: 197px;
}

.post .post-meta {
  margin-top: 15px;
  margin-bottom: 15px;
}

.post-meta .post-category {
  font-size: 13px;
  text-transform: uppercase;
  padding: 3px 10px;
  font-weight: 600;
  border-radius: 2px;
  margin-right: 15px;
  color: #fff;
  background-color: #212631;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.post-meta .post-category:hover, .post-meta .post-category:focus {
  text-decoration: none;
  opacity: 0.9;
}

.post-meta .post-category.cat-1 {
  background-color: #4bb92f;
}

.post-meta .post-category.cat-2 {
  background-color: #ff8700;
}

.post-meta .post-category.cat-3 {
  background-color: #8d00ff;
}

.post-meta .post-category.cat-4 {
  background-color: #0078ff;
}

.post-meta .post-date {
  font-size: 13px;
  font-weight: 600;
}

.post .post-title {
  font-size: 18px;
  margin-bottom: 0px;
}

.post-tags li {
  display: inline-block;
  margin-right: 3px;
  margin-bottom: 5px;
}

.post-tags li a {
  display: block;
  color: #fff;
  background-color: #212631;
  padding: 3px 10px;
  font-weight: 600;
  border-radius: 2px;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

/*----------------------------*\
	post thumb
\*----------------------------*/

.post.post-thumb {
  position: relative;
}

.post.post-thumb .post-img:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: -webkit-gradient( linear, left bottom, left top, from(rgba(33, 38, 49, 0.3)), to(transparent));
  background: linear-gradient( to top, rgba(33, 38, 49, 0.3) 0%, transparent 100%);
}

.post.post-thumb .post-body {
  position: absolute;
  bottom: 0px;
  padding: 20px 15px;
}

.post.post-thumb .post-meta .post-date {
  color: #eceef2;
}

.post.post-thumb .post-title {
  font-size: 22px;
}

.post.post-thumb .post-title>a {
  color: #fff;
}

/*----------------------------*\
	post widget
\*----------------------------*/

.post.post-widget:after {
  content: "";
  display: block;
  clear: both;
}

.post.post-widget .post-img {
  width: 90px;
  float: left;
  margin-right: 15px;
}

.post.post-widget .post-img img {
  width: 100%;
}

.post.post-widget .post-title {
  font-size: 18px;
}

/*----------------------------*\
	post row
\*----------------------------*/

.post.post-row:after {
  content: "";
  display: block;
  clear: both;
}

.post.post-row .post-img {
  width: 40%;
  float: left;
}

.post.post-row .post-body {
  margin-left: calc(40% + 30px);
}

.post.post-row .post-meta {
  margin-top: 0px;
}

.post.post-row .post-title {
  margin-bottom: 15px;
}

/*=========================================================
	POST PAGE
===========================================================*/

.sticky-container {
  position: relative;
  padding-left: 80px;
}

.sticky-container .sticky-shares {
  position: absolute;
  top: 0;
  left: 0;
}

.sticky-shares a {
  display: block;
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #fbfbfd;
  color: #a7b3c6;
  border: 1px solid #eceef2;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.sticky-shares a:hover {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

.sticky-shares a.share-facebook:hover {
  color: #3b5998;
  border-color: #3b5998;
}

.sticky-shares a.share-twitter:hover {
  color: #55acee;
  border-color: #55acee;
}

.sticky-shares a.share-google-plus:hover {
  color: #dd4b39;
  border-color: #dd4b39;
}

.sticky-shares a.share-pinterest:hover {
  color: #ff0000;
  border-color: #ff0000;
}

.sticky-shares a.share-linkedin:hover {
  color: #007bb5;
  border-color: #007bb5;
}

/*----------------------------*\
	author
\*----------------------------*/

.post-author .media .media-left {
  padding-right: 40px;
}

.post-author .media .media-left .media-object {
  width: 120px;
  border-radius: 50%;
}

.post-author .author-social {
  margin-top: 15px;
}

.post-author .author-social li {
  display: inline-block;
  margin-right: 5px;
}

.post-author .author-social li>a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #a7b3c6;
  color: #fff;
  border-radius: 2px;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.post-author .author-social li>a:hover, .post-author .author-social li>a:focus {
  color: #fff;
  opacity: 0.9;
}

/*----------------------------*\
	comments
\*----------------------------*/

.post-comments .media {
  padding-top: 15px;
  border-top: 1px solid #eceef2;
}

.post-comments .media:nth-child(1) {
  padding-top: 0px;
  border-top: none;
}

.post-comments .media .media-left {
  padding-right: 15px;
}

.post-comments .media .media-left .media-object {
  width: 70px;
  border-radius: 50%;
}

.post-comments .media .media-body .media-heading h4 {
  text-transform: capitalize;
}

.post-comments .media .media-body .media-heading .time {
  font-size: 13px;
  margin-right: 15px;
  color: #a7b3c6;
}

.post-comments .media .media-body .media-heading .reply {
  font-size: 13px;
  color: #a7b3c6;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

.post-comments .media .media-body .media-heading .reply:hover, .post-comments .media .media-body .media-heading .reply:focus {
  color: #212631;
  text-decoration: none;
}

/*=========================================================
	Aside
===========================================================*/

.aside-widget {
  margin-bottom: 40px;
}

/*----------------------------*\
	category
\*----------------------------*/

.category-widget ul li {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid #eceef2;
}

.category-widget ul li+li {
  margin-top: 10px;
}

.category-widget ul li>a {
  display: block;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

.category-widget ul li>a>span {
  float: right;
  color: #fff;
  background-color: #212631;
  padding: 0px 5px;
  font-weight: 600;
  border-radius: 2px;
}

.category-widget ul li>a.cat-1>span {
  background-color: #4bb92f;
}

.category-widget ul li>a.cat-2>span {
  background-color: #ff8700;
}

.category-widget ul li>a.cat-3>span {
  background-color: #8d00ff;
}

.category-widget ul li>a.cat-4>span {
  background-color: #0078ff;
}

.category-widget ul li>a:hover, .category-widget ul li>a:focus {
  text-decoration: none;
}

.category-widget ul li>a.cat-1:hover, .category-widget ul li>a.cat-1:focus {
  color: #4bb92f;
}

.category-widget ul li>a.cat-2:hover, .category-widget ul li>a.cat-2:focus {
  color: #ff8700;
}

.category-widget ul li>a.cat-3:hover, .category-widget ul li>a.cat-3:focus {
  color: #0078ff;
}

.category-widget ul li>a.cat-4:hover, .category-widget ul li>a.cat-4:focus {
  color: #8d00ff;
}

/*----------------------------*\
	tags
\*----------------------------*/

.tags-widget ul li {
  display: inline-block;
  margin-right: 3px;
  margin-bottom: 5px;
}

.tags-widget ul li a {
  display: block;
  color: #fff;
  background-color: #212631;
  padding: 3px 10px;
  font-weight: 600;
  border-radius: 2px;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.tags-widget ul li a:hover, .tags-widget ul li a:focus {
  opacity: 0.9;
  color: #fff;
  text-decoration: none;
}

/*----------------------------*\
	archive
\*----------------------------*/

.archive-widget ul li {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid #eceef2;
}

.archive-widget ul li+li {
  margin-top: 10px;
}

.archive-widget ul li>a {
  display: block;
}

























@media (min-width:1200px){
  .container, .container-lg, .container-md, .container-sm, .container-xl{
    max-width: 1200px!important;
  }
}
@media (min-width:900px){
    .why-money-fair{
    background-image:url("../img/Why-The-Money-Fair.png");
    height:440px!important;
    object-fit: cover;
    padding:30px 0px;
    background-repeat: no-repeat!important;
    background-size:820px;
    background-position: center center;
}    
}
@media (max-width:900px){
    .why-money-fair{
    background-image:url("../img/why-we-are-mobile.png");
    height:550px!important;
    object-fit: cover;
    padding:0px 0px;
    background-repeat: no-repeat!important;
    background-size:350px;
    background-position: center center;
}    
}
.min-ht-cd{
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  height: 200px;
  width:230px;
  border-radius: 10px;
  box-shadow:0px 0px 30px rgba(127, 137, 161, 0.25);
}

