@import url('https://fonts.googleapis.com/css2?family=Playfair+Display+SC:wght@400;700;900&display=swap');
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}
html{
    min-height: 100%;
    scroll-behavior: smooth;
  --top-spacing: 220px;
  scroll-padding-top: var(--top-spacing);
}
a {
    color:#1b3486;
}
a, a:hover, a:focus {
    text-decoration: none;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-weight:300;
    font-size: 1rem;
    line-height:2rem;
    color: #3f3f3f !important;
    overflow-x: hidden;
}

  ul{
      margin: 0;
  }
  li{
      list-style-type: none;
  }
  .p140{
      padding:140px 0;
  }
  .p100{
      padding:100px 0;
  }
  .p60{
    padding:60px 0;
}
  .p70{
      padding:70px 0;
  }
  .p30{
    padding:30px 0;
}
 p{
    font-size: 16px;
    line-height: 28px;
 }
  /** button set **/
 .btn-b2i{
    background-color: #ed1c24;
    border-radius: 50px;
    border:1px solid transparent;
    color: #ffffff;
    display: inline-block;
    height: 65px;
    line-height: 66px;
    padding: 0px 55px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.5s ease; 
    -webkit-transition: all 0.5s ease; 
    -ms-transition: all 0.5s ease;
 }
 
 .btn-b2i:hover,  .btn-b2i:focus{
     color:#ed1c24;
     border: 1px solid #ed1c24;
     background-color:transparent;
     outline: none;
 }

  /** end button set **/


 /****************
  @
  @   Animation
  @
  ****************/
  @keyframes mymove {
    50% {background-position: center;}
  }
  /* type */
  
@keyframes type{ 
    from { width: 0; } 
  } 
  
  @keyframes type2{
    0%{width: 0;}
    50%{width: 0;}
    100%{ width: 100; } 
  } 
  
  @keyframes blink{
    to{opacity: .0;}
  }
  
  /** right-left **/
  .right-left {
    -webkit-animation: right-left 6s cubic-bezier(.39, .575, .565, 1) both;
    animation: right-left 6s cubic-bezier(.39, .575, .565, 1) both
}

@-webkit-keyframes right-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    25% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px)
    }
    75% {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes right-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    25% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px)
    }
    75% {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}
  /* slide-top */
  .slide-top {
    -webkit-animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
 @-webkit-keyframes slide-top {
    0% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
              opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
              opacity: 1;
    }
  }
  @keyframes slide-top {
    0% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
              opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
              opacity: 1;
    }
  }

/* Bounce To Right */
.hvr-bounce-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    border-radius: 50px;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
  .hvr-bounce-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0px;
   background:#002e63;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .hvr-bounce-to-right:hover, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:active {
    color:#fff !important;
  }
  .hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
 /* Ripple In */
@-webkit-keyframes hvr-ripple-in {
    100% {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      opacity: 1;
    }
  }
  @keyframes hvr-ripple-in {
    100% {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      opacity: 1;
    }
  }
  .hvr-ripple-in {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
  }
  .hvr-ripple-in:before {
    content: '';
    position: absolute;
    border: #074dbe solid 4px;
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
  }
  .hvr-ripple-in:hover:before, .hvr-ripple-in:focus:before, .hvr-ripple-in:active:before {
    -webkit-animation-name: hvr-ripple-in;
    animation-name: hvr-ripple-in;
  }
  
  /** animation top-bottom**/
  .top-bottom {
    -webkit-animation: top-bottom 6s cubic-bezier(.39, .575, .565, 1) both;
    animation: top-bottom 6s cubic-bezier(.39, .575, .565, 1) both
}

@-webkit-keyframes top-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes top-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}
/** end animation top-bottom**/

/* Push */
@-webkit-keyframes hvr-push {
    50% {
      -webkit-transform: scale(0.8);
      transform: scale(0.8);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes hvr-push {
    50% {
      -webkit-transform: scale(0.8);
      transform: scale(0.8);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  .hvr-push {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  }
  .hvr-push:hover, .hvr-push:focus, .hvr-push:active {
    -webkit-animation-name: hvr-push;
    animation-name: hvr-push;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
  }
   /**************
  @
  @   Header
  @
  **************/
  
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    transition: all 0.5s;
}
  .navbar.bg-light {
    background: transparent !important;
    text-transform: uppercase;
    font-size: 14px;
    height: 100px;
    position: relative;
}
.Fixed.navbar.bg-light {
    background-color: #fff !important;
    height: 100px;
    box-shadow: 0 0 4px 2px rgb(0 0 0 / 48%);
    z-index: 99;
}
header nav .container{
    min-height: 100px;
}
header.Fixed{
    position: fixed;
    z-index: 999;
    background: #00468c;
    transition: all 0.5s;
}
header.Fixed .header {
    padding: 0px 0 5px;
    transition: all .3s ease-in-out;
}
header.Fixed img.img-fluid.logo {
  max-width: 110px;
  transition: all 0.5s;
}
header.Fixed .navbar.bg-light{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:#fff !important;
    height: 100px;
    box-shadow: 0 0 4px 2px rgb(0 0 0 / 48%);
    z-index: 99;
}

.logo a{
    width: 170px;
}
.logo a img{
    width: 100%;
}
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
    color: rgb(255 255 255 / 90%);
  
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: rgb(255 255 255 / 70%);
}

header nav .menu-header-menu-container{
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    text-align: right!important;
    -ms-flex-positive: 1!important;
    flex-grow: 1!important;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-align: center;
    align-items: center;
}

header nav .menu-header-menu-container a.btn-LE{
    margin-left: 35px;
}

header nav.navbar ul li a{
color: #fff;
font-size: 12px;
text-transform: uppercase;
transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
font-family: 'Playfair Display SC', serif;
font-weight: 700;
letter-spacing: 1px;
}
header .col-xl-5:nth-child(1) {
  justify-content: end !important;
  display: flex;
}
header .col-xl-5{
  padding-left: 0;
   -ms-flex: 0 0 42.666667%;
    flex: 0 0 42.666667%;
    max-width: 42.666667%;
}
header .col-xl-2 {
    -ms-flex: 0 0 14.666667%;
    flex: 0 0 14.666667%;
    max-width: 14.666667%;
    left: -3px;
}
header nav.navbar{
    padding: .5rem 0;
    margin-top: 4px;
}
header nav.navbar ul li a:hover, header nav.navbar ul li a:focus{
   opacity: 1;
color: #fab75c;
}
/** banner **/
.banner {
    position: relative;
    padding: 0;
}
.banner video, .banner img{
    width: 100%;
    display: block;
        height: 100vh;
    object-fit: cover;
}
.banner .slide-wrapper{
height: 100%;
}
.banner:after {
   /* content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background:#000;
    opacity: 0.5;*/

}
.banner .carousel-inner, .banner .carousel-inner .carousel-item, .banner .carousel{
    height: 100%;
}
.banner .banner-caption{
    position: absolute;
    left:100px;
    top:50%;
    width: 90%;
    transform: translate(0, -50%);
    z-index: 1;
    color:#fff;
}
.banner .banner-caption h1{
    margin-bottom: 15px;
    font-size: 3rem;
    line-height: 4rem;
    font-weight: 800;
    width: 19em;
    animation: type 4s steps(60, end);
    white-space: nowrap;
    overflow: hidden;
}
.banner p{
  color:#fff;
  width: 75%;
margin: 0 auto;
font-weight: 500;
}
.banner .carousel-item::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.banner .carousel-caption {
  bottom: 35%;
  }
  .banner .bg-arrow {
  background: #2e387480;
  padding: 10px 10px 2px;
  border-radius: 3px;
}
.banner .carousel-control-prev {
  left: -55px;
  opacity: 1;
  width: 13%;
}
.banner .carousel-control-next {
  right: -55px;
  opacity: 1;
  width: 13%;
}
.banner .carousel-control-prev-icon {
  background-image: url("../images/left-arrow.png");
  width: 18px;
  height: 38px;
}
.banner .carousel-control-next-icon {
  background-image: url("../images/right-arrow-1.png");
  width: 18px;
  height: 38px;
}
.menu-new li a.btn-nav{
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin-right: 10px;
    transition: all 0.5s ease !important;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;

}
.menu-new li:last-child a.btn-nav{
    margin-right: 0px;
}
.menu-new li a.btn-nav:hover, .menu-new li a.btn-nav:focus{
    background:#fff;
    color:#000;
}
.banner .row{
    padding-top: 100px;
    padding-bottom: 100px;
}
.banner h1{
font-family: 'Ovo', serif;
font-size: 55px;
line-height: 65px;
font-weight: 600;
color: #fff;
text-transform: uppercase;
}
.banner h1 span{
    display: block;
}
.banner .ban-icon{
    margin-top: 30px;
}
.banner .ban-icon img{
    width: auto;
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}
.banner .ban-icon li{
    margin-right: 12px;
}
.banner a.more-btn{
  text-transform: uppercase;
}
/**  wp menu **/
.menu-new {
    display: block
}

.menu-new li {
    display: inline-block;
    position: relative;
    z-index: 100
}
.menu-new li.current-menu-item a{
    color: #ed1c24;
}

.menu-new li:first-child {
    margin-left: 0
}

.menu-new li a {
    font-weight: 400;
    text-decoration: none;
    padding: 10px 14px;
    display: block;
    color: #000;
    transition: all .2s ease-in-out 0s;
    font-size:1.125rem;
    text-transform: capitalize;
}

.menu-new li a:hover, .menu-new li a:focus{
    color: #ed1c24;
}
.menu-new li ul li:hover>a {
    color: #fff;
    background:  #ed1c24;
    opacity: 1;
}

.menu-new ul {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
    width: 270px;
    position: absolute;
    left: 0;
    background: #fff;
    z-index: 99;
    transform: translate(0, 20px);
    transition: all .2s ease-out
}

.menu-new ul:after {
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 6px;
    margin-left: -6px
}

.menu-new ul li {
    display: block;
    float: none;
    background: 0 0;
    margin: 0;
    padding: 0;
    border: 1px solid #eee;
}
/* 
.menu-new ul li:last-child {
    border-bottom: none
} */
.banner-btm{
    position: relative;
}
.banner-btm::before {
    content: '';
    width: 50px;
    height: 80%;
    position: absolute;
    left: 20px;
    background: url(../images/line-icon.png);
    top: 27px;
}
.menu-new ul li a {
    font-size: 14px;
    font-weight: 400;
    display: block;
    color: #797979;
    background: #fff;
    text-align: left
}

.menu-new ul li a:hover,
.menu-new ul li:hover>a {
    background: #ed1c24;
    color: #fff;
    padding: 12px 20px 12px 20px;
}

.menu-new li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0)
}

.menu-new ul ul {
    left: 169px;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transform: translate(20px, 20px);
    transition: all .2s ease-out;
}

.menu-new ul ul:after {
    left: -6px;
    top: 10%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #fff;
    border-width: 6px;
    margin-top: -6px
}

.menu-new li>ul ul:hover {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0)
}

.responsive-menu {
    display: none;
    width: 100%;
    padding: 20px 15px;
    background: #1b3486;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600
}

.responsive-menu:hover {
    background: #1b3486;
    color: #fff;
    text-decoration: none
}

a.homer {
    background: #fc6d58
}
.banner-btm h1 {
    font-size: 100px;
    letter-spacing: 12px;
    line-height: 114px;
    color: #ffffff;
    font-weight: 700;
    margin-top: -97px;
    position: relative;
    font-family: 'Playfair Display', serif;
        text-transform: uppercase;
}
.banner-btm h1 span{
        color: #fff;
}
.single-what_we_do .col-sm-12.col-md-12.col-lg-6.col-xl-6.img-box.wow.bounceInLeft img {
    margin: 0px auto;
    display: block;
}
.bottm-content {
    margin-top: 40px;
}
.single-what_we_do .img-star::before {
    height: calc(100% - 60px);
}
.bottm-content li {
    padding: 2px 0;
    padding-left: 30px;
    width: 33%;
    float: left;
    position: relative;
}
.bottm-content li::before {
    content: '';    
    font-family: fontawesome;
    left: 2px;
    position: absolute;
    color: #a8996e;
    background: url(https://www.cornerstonela.com/wp-content/uploads/2021/05/logo-icon.png);
    width: 20px;
    height: 20px;
    background-size: contain;
    top: 7px;
}
.banner-btm h2 {
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 73px;
    color: #000000;
    font-weight: 300;
    text-transform: uppercase;
}
.commn-sec h2 {
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 42px;
    color: #000000;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}
.sec1 .img-box img, .counter-tbl {
    filter: drop-shadow(0px 1px 22.5px rgba(14,26,15,0.16));
    max-width: 90%;
    margin: 0px auto;
    float: left;
    
}
.counter-tbl br{
    display: none;
}
.counter-tbl h2.chart-title {
    font-size: 20px;
    font-weight: 600;
}
.counter-tbl .smw-single.smw-basic > div {
    display: flex;
    justify-content: center;
    font-size: 14px;
    flex-wrap: wrap;
}
.smw-single.smw-basic .smw-field-virtual-name {
    display: block;
    width: 100%;
    line-height: 18px;
}
.counter-tbl {
    border: 1px solid #eee;
    text-align: center;
    margin-top: 40px
}
.counter-tbl {
    border: 1px solid #eee;
    text-align: center;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 11%);
}
.counter-tbl td span {
    display: block;
    color: #205541;
    font-weight: 600;
}
.counter-tbl td {
    padding: 20px;
    border-left: 1px solid #eee;
    min-width: 50%;
    display: inline-block;
}



.video__wrapper{
  margin:20px 0;
 /* display:inline-block;
height: 257px;*/
width: 462px;
  position:relative;
  right: 0;
left: 0;
border-radius: 30px 0 30px;
overflow: hidden;
position: relative;
border: 5px solid #a8c0d8;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}
.bg-dot{
  position:relative;   
}
.bg-dot::before {
content: "";
width: 200px;
height: 211px;
background: url(../images/dots.png);
position: absolute;
bottom: -48px;
right: 34px;
z-index: -1;
-webkit-animation: left-bottom 6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
animation: left-bottom 6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.about-left video{
width: 461px;
max-width: 100%;
display: inline-block;
vertical-align: top;
height: 410px;
object-fit: cover;
object-position: center;
}
.video__play-button{
  margin:0;
  padding:0;
  cursor:pointer;
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  border:0;
  border-radius:0;
  background-color:rgba(0,0,0,0.1);
  -webkit-appearance:none;
  z-index:2;
  transition: all 200ms ease-in-out;
}


.video__play-button-icon{
  width:11%;
  transition: all 200ms ease-in-out;
}

.video__play-button-icon--play polygon{
  transform-origin: 50% 50%;
  transition: all 200ms ease-in-out;
}

.video__play-button-icon--play:hover polygon{
  transform: scale(1.5);
}

.video__play-button[data-button-state="pause"] .video__play-button-icon--pause{
  display:none;
}

.video__play-button[data-button-state="play"] .video__play-button-icon--play{
  display:none;
}

.video__play-button[data-button-state="play"] .video__play-button-icon{
  opacity:0;
}

.video__play-button[data-button-state="play"]:hover .video__play-button-icon{
  opacity:1;
}

.video__play-button[data-button-state="play"]{
  background-color:rgba(0,0,0,0);
}

.video__play-button[data-button-state="play"]:hover{
  background-color:rgba(0,0,0,.4);
}

.video__fullscreen-button{
  margin:0;
  padding:0;
  position:absolute;
  bottom:10px;
  right:10px;
  border:0;
  background:transparent;
  cursor:pointer;
  border-radius:0;
  -webkit-appearance:none;
  z-index:3;
  transition: all 200ms ease-in-out;
}

.video__fullscreen-icon{
  padding:10px;
  display:block;
  vertical-align:top;
  color:#fff;
  opacity:0;
  visibility:hidden;
  transition: all 200ms ease-in-out;
}

.video__wrapper[data-state="pause"] .video__fullscreen-icon,
.video__wrapper[data-state="play"]:hover .video__fullscreen-icon{
  opacity:1;
  visibility:visible;
}


/** banner **/
.banner.inner-nan, .banner.inner-nan img {
  height: 420px;
  min-height: auto;
}
.inner-nan .carousel-item h1 {
    font-size: 50px;
    margin-bottom: 0;
    line-height: 70px;
}
.inner-nan .carousel-caption {
   bottom: 26%;
left: 0;
right: 0;
}


/*How we serve page css*/
.what-img1::after {
content: '';
width: 300px;
height: 325px;
background: #00468c;
border-radius: 15px;
position: absolute;
left: -6px;
bottom: -17px;
z-index: -999;
}
.what-img1::before{
content: '';
position: absolute;
z-index: -999;
width: 300px;
height: 325px;
right: 25px;
left: unset;
top: -18px;
border-radius: 20px;
filter: drop-shadow(0px 1px 20.5px rgba(0,0,0,0.18));
background-color: #ffffff;
}
.what-img1 img{
width: 100%;
height: 100%;
object-fit: cover;
max-width: 510px;
border-radius: 20px;
min-height: 400px;
position: relative;
z-index: 100;
}

.what-img1-video{

width: 100%;
height: 100%;
object-fit: cover;
max-width: 510px;
border-radius: 20px;
min-height: 400px;
position: absolute;
right: 50%;
z-index: 999;    


}

.what-sec{
 padding: 60px 0px 45px;
}
.btm-btn{
    padding: 40px 0;
}
.what-sec1.half, .what-sec2.half1 {
    padding: 60px 0px;
    margin: 0 0 40px;
    background: #f3f3f3;
}
.what-sec1.half:not(:last-child) {
    margin: 0 0 0px;
}
.what-sec1.half:last-child {
    margin: 0 0 0px;
}
.what-sec1.half.mb-5:last-child {
    margin-bottom: 0rem !important;
}
.what-sec1.half::before {
    content: '';
    width: 30%;
    background: #fff;
    height: 100%;
    position: absolute;
    top: 0;
}
.what-sec1 p em{
  /*text-decoration:underline;
  border-bottom: 1.3px solid #000;*/
}
.what-sec2.half1::before {
    content: '';
    width: 30%;
    background: #fff;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}
.what-sec1-bg{
  background: #7e878c;
  padding: 50px;
  margin-top: -100px;
  color: #fff;
}
.what-sec1-bg p, .whatwedo-page ul li{
  color: #fff !important;
}
.what-sec1-ul{
  border: 1px solid #fff;
  padding: 20px;
}
.what-sec1-ul ul{
  column-count: 3;
}
.whatwedo-page ul li::before{
  filter: brightness(0) invert(1);
}

/*become-an-expert css*/
.commn-sec.whoWerae {
  position: relative;
  background: #f3f3f3;
  padding-top: 80px;
}
.commn-sec.whoWerae-top {
padding-bottom: 30px;
}
.whoWerae::before {
content: '';
width: 30%;
background: #fff;
height: 100%;
position: absolute;
top: 0;
}
.aboutUs img {
height: 365px;
object-fit: cover;
object-position: center;
border-radius: 4px;
box-shadow: 4px 5px 7px -1px rgba(66, 62, 62, 0.75);
}
.aboutText p{
  color: #000;
  margin: 10px 0 10px;
}
.aboutText ul {
  margin-top: 15px;
  position: relative;
  padding-left: 30px;
}
.postid-473 section.serve-single.fees ul:nth-child(5) {
    display: block;
    clear: both;
    float: left;
    width: 100%;
}
.aboutText ul li{
list-style: none;
font-weight: 400;
margin: 8px 0;
position: relative;
line-height: 27px;
}
.aboutText ul li:before{
content: "";
    position: absolute;
    top: 8px;
    width: 6px;
    height: 6px;
    background-size: contain;
    left: -23px;
    border-radius: 5px;
    background: #054f7d;
}


/*Get Started Now css*/
.get-now ul{
   padding-left: 30px;
   margin-bottom: 20px;
}
.get-now ul li{
    list-style: disc;
}
.get-now-top{
    padding: 60px 0 30px;
}
.get-now .what-sec2.half1 {
  margin: 0;
}


/*our-process pg css*/
.process-img img{
   width: 100%;
   min-width: 360px;
height: 100%;
max-height: 520px;
object-fit: cover;
}
#our-process .what-sec2.half1 {
  margin: 0;
}
.commn-sec.process-top{
  padding-bottom: 40px;
  background: #f3f3f3;
}
.our-process .icon-box {
  margin-top: 20px;
}
.our-process .icon-boxes {
  padding: 40px 0;
}
.our-process .icon-box:nth-child(1) {
  margin-top: 0px;
}
.our-process .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #00468c;
  border-radius: 50px;
  transition: 0.5s;
}
.our-process .icon-box .icon img {
 width: 42px;
}
.our-process .icon-box:hover .icon {
  background: #00468c;
  border-color: #00468c;
}
.our-process .icon-box:hover .icon img {
  filter: brightness(0) invert(1);
}
.our-process .icon-box .title {
  margin-left: 85px;
  font-size: 22px;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
color: #00468c;
}
.our-process .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}
.our-process .icon-box .title a:hover {
  color: #1977cc;
}
.our-process .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  /*font-size: 14px;*/
}

/*about*/
.about {
  padding-bottom: 0;
  padding-top: 0;
  position: relative;
}

.left-head {
    display: flex;
    align-items: center;
    padding: 0 55px;
}
.left-head h2{
  width: 92%;
text-align: center;
}
.left-head .advantage-blue-text {
background: transparent;
padding: 10px 0 10px 30px;
clip-path: unset;
border-left: 1px solid #00468c;
margin-left: 20px;
}
/*end about*/
/*mission*/
.mission {
  position: relative;
  background-color: #f3f3f3;
  background-repeat: no-repeat;
  background-image: url(../images/pattern.png);
  width: 100%;
  padding: 60px 0;
}

.mission p {
  font-weight: 400;
}
.mission p a{
color: #00468c;
text-decoration: underline;
}
.mission p a:hover{
color: #00468c;
text-decoration: none;
}
.team-member-card {
width: 100%;
color: #000;
max-width: 490px;
margin: 0 0px 10px 30px;
float: right;
}
.team-member-card .team-img{
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  padding-top: 6px;
  text-align: center;
}
.team-member-card .team-img img {
width: 100%;
object-fit: cover;
height: 100%;
max-width: 440px;
max-height: 368px;
object-position: top;
}
/*end mission*/


.words-pg .card {
  margin: 0 auto;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.words-pg p span{
  display: block;
}
.words-box{
background: #ebebeb;
padding: 25px 10px 15px;
margin-bottom: 10px;
}
.words-pg .logo-main1 {
  width: 100%;
  border: 1px solid #00468c;
  padding: 15px;
  background: #fff;
height: 150px;
display: flex;
align-items: center;
}
.words-pg .logo-main1 img{
width: 100%;
object-fit: cover;
max-width: 160px;
margin: 0 auto;
}
.words-pg .quotes-img{
  position: relative;
}
.words-pg .quotes-img::before {
  content: "";
  position: absolute;
  background: url(../images/quotes.png);
  width: 35px;
  height: 27px;
  top: 0;
  margin: 0 0px 0 0px;
background-repeat: no-repeat;
left: 0;
}
.words-pg .quotes-img::after {
  content: "";
  position: absolute;
  background: url(../images/quotes1.png);
  width: 35px;
  height: 27px;
  bottom: 0;
  right: 0px;
  background-repeat: no-repeat;
}
.words-box p{
  padding: 0 50px 0px 50px;
}


/*blog pg css*/
.blog-pg .box-shadow{
  box-shadow: -1px 4px 20px -6px rgba(0,0,0,0.75);
-webkit-box-shadow: -1px 4px 20px -6px rgba(0, 0, 0, 0.2);
-moz-box-shadow: -1px 4px 20px -6px rgba(0,0,0,0.75);
transition: all 0.5s ease !important;
margin-bottom: 30px;
}

.blog-pg .arrow-up {
  width: 0; 
  height: 0; 
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid white;
  margin-top: -14px;
  position: absolute;
  margin-left: 30px;
}
.blog-pg .middle-box{
  padding: 20px 30px;
}
.blog-pg .middle-box p{
  margin-bottom: 1rem;
  }
.blog-pg .middle-box h5{
    font-size: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 26px;
    font-family: 'Cinzel', serif;
}
.blog-pg .heading, .media-pg .heading {
  text-transform: uppercase;
  margin: 0 0 8px;
  color: #182751;
}
.blog-pg, .blog-d{
  padding: 60px 0;
}


.blog-d .team-member-card {
  width: 100%;
  color: #000;
  max-width: 400px;
  margin: 0 30px 0px 0px;
  float: left;
}
.blog-d .team-member-card .team-img img {
  width: 350px;
  object-fit: cover;
  height: 300px;
  object-position: top;
  border: 8px solid #fff;
  box-shadow: -1px 2px 11px 0px rgba(0,0,0,0.75);
  -webkit-box-shadow: -1px 2px 11px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: -1px 2px 11px 0px rgba(0,0,0,0.75);
}



/*contact page css*/
.commn-sec.contact{
  padding-top: 80px;
}
.contact-info a {
    color: #666;
}
.contact-info p {
 margin-top: 22px;
}
.contact-info i {
position: absolute;
width: 45px;
height: 45px;
text-align: center;
border-radius: 50%;
left: 0;
right: 0;
margin: 0px auto;
top: -28px;
background: #00468c;
line-height: 45px;
box-shadow: 0px -1px 1px rgb(0 0 0 / 18%);
color: #fff;
}
.contact-info {
    background: #fdfdfd;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 8%);
        margin-top: 45px;
        position: relative;
}


.team .modal-header {
    background: #185190;
    border-radius: 0;
}
.team .modal-header h5{
  margin: 0px;
  color: #fff;
}
.team .modal-content {
    border: 4px solid #185190;
}
.team  button.close {
background-color: #185190;
width: 40px;
height: 40px;
border-radius: 50%;
position: absolute;
right: -5px;
top: -2px;
opacity: 1;
padding: 0;
color: #fff;
}
.team .modal-dialog {
    max-width: 900px;
    width: 90%;
    margin: 0px auto;
}
.team  .btn-close:hover{
  opacity: 1;
}
.team  .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
    max-height: calc(100vh - 120px);
    overflow: auto;
}


.sec1-rht {
    padding-left: 50px;
}
.sec1-rht .more-btn{
    margin-left: 13px;
}
.img-star img{
    position: absolute;
    left: -14px;
}
.img-star::before {
    content: '';
    width: 1px;
    height: 100%;
    background: #dadada;
    position: absolute;
    left: 0;
    top: 60px;
}
.commn-sec {
    padding: 60px 0;
    position: relative;
}
.sec2 {
    background: url(../images/bg1.jpg);
}
.sec2 h2, .sec2 p, .sec4 h2{
    color: #fff;
}
.we-do-box img {
    width: 250px;
    height: 250px;
    object-fit: cover;
}
.we-do-box p {
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    padding: 10px 0 0 25px;
    border-left: 1px solid #fff;
}
.main-mission{
   display: flex;
}
.mission-sec h2, .mission-sec h6{
   color: #fff; 
}
.mission-sec h6{
    color: #fff;
font-size: 22px;
font-family: 'Playfair Display', serif;
}
.mission-box {
    border-left: 1px solid #eeeeee;
    padding: 20px 0px 0px 20px;
    width: 250px;
text-align: center;
}
.mission-box:nth-child(1) {
    border-left: 0;
    width: 205px;
}
.mission-box {
    position: relative;
}
.mission-p p{
   color: #fff;
width: 80%;
margin: 40px auto 0; 
}
.mission-box h6 {
    font-size: 170px;
    line-height: 28px;
    color: #f8f6f3;
    font-weight: 900;
    position: absolute;
    top: 40px;
    left: 20px;
    right: 0;
    font-family: 'Playfair Display', serif;
    opacity: 0.1;
}
.mission-box h3 {
    font-size: 24px;
    line-height: 52px;
    color: #fff;
    font-weight: 700;
    padding: 20px 0 40px;
    position: relative;
    font-family: 'Playfair Display', serif;
}
.mission-box p {
    font-size: 15px;
    line-height: 24px;
    color: #3f3f3f;
    font-weight: 400;
}
.sec4{
    background: url(../images/1730482594.jpg);
}
.sec4::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 65%);
    position: absolute;
    top: 0;
    left: 0;
}
.sec4 img {
    width:100%;
    height: 260px;
    object-fit: cover;
    float: left;
    object-position: top;
}
.client-box {
    width: 50%;
    height: 260px;
    float: left;
    background: #fff;
    padding: 20px;
    margin-top: 20px;
}
.client-box h3 {
    font-size: 26px;
    line-height: 30px;
    color: #202020;
    font-weight: 600;
    text-align: left;
    font-family: 'Playfair Display', serif;
}
a.client-box p {
    font-size: 16px;
    letter-spacing: 4px;
    line-height: 30px;
    color: #202020;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
    padding-top: 10px;
}
img.img-fluid.logo {
    max-width: 125px;
    transition: all 0.5s;
}
ul.navbar-nav li a {
    font-size: 16px;
    line-height: 46px;
    color: #ffffff;
    font-weight: 500;
    padding: 0 7px;
}
.navbar-nav .get{
    background: #fff;
border-radius: 30px;
padding: 0 10px;
margin-left: 10px;
}
.navbar-nav .get:hover {
  background: #d58b28;
}
.navbar-nav .get a{
 color: #322d2d;
}
.navbar-nav .get:hover a{
 color: #fff;
 opacity: 1;
}
.header {
    padding-top: 0px;
    transition: all .3s ease-in-out;
}
.sec5::before {
    content: '';
    width: 32%;
    position: absolute;
    background: #145541;
    height: 100%;
    top: 0;
}
.hfrm-left h2, .hfrm-left p, .hfrm-left ul li{
    color: #fff;
    clear: both;
}
.hfrm-box {
    padding-left: 60px;
}
.hfrm-left ul li img {
    float: left;
    margin-right: 10px;
    padding: 2px 0;
}
.hfrm-left span {
    float: left;
    width: calc(100% - 40px);
}
.hfrm-left ul li{
    padding: 4px 0;
        float: left;
    width: 100%;
}
footer{
    background: #000000;
    padding: 45px 0 0;
}
footer h3, footer p, footer ul li, footer a{
    color: #fff;
}
footer h3 {
    font-size: 22px;
    letter-spacing: 0px;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 15px;
}
footer ul li {
    font-size: 15px;
line-height: 24px;
padding: 7px 10px;
float: left;
}
footer #menu-quick-links{
display: flex;
justify-content: center;  
}
footer p {
    font-size: 14px;
    line-height: 22px;
}
img.broker-img {
    position: fixed;
    right: 10px;
    bottom: 10px;
}
.ftr-btm ul li {
    display: inline;
    padding: 0 4px;
}
.ftr-btm ul li a img{
transition: all .3s ease-in-out;
}
.ftr-btm ul li a:hover img{
        transform: scale(1.1);
transition: all .3s ease-in-out;
}
.ftr-btm {
    border-top: 1px solid rgb(229 229 229 / 67%);
    padding: 10px 0 10px;
    margin-top: 20px;
}
.ftr-btm p {
    margin: 0px;
    font-size: 15px;
    line-height: 18px;
    color: #c9c9c9;
    font-weight: 400;
}
.we-do-box:hover {
    transition: all .3s ease-in-out;
}
.mission-box:hover {
    margin-top: -20px;
    transition: all .3s ease-in-out;
}
.mission-box {
    transition: all .3s ease-in-out;
}
.sec4 .col-xl-6:hover figure::before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}
.client-box i {
    position: absolute;
    right: 70px;
    bottom: 60px;
    font-size: 24px;
    transition: all .3s ease-in-out;
}
.sec4 .col-xl-6:hover i {
    right: 40px;
    transition: all .3s ease-in-out;
}
.hfrm-left ul li a {
    color: #fff;
}
.hfrm-left ul li a:hover {
    color: #fff;
    font-weight: 600;
}
footer ul li:hover a, .ftr-btm a:hover {
    color: #d58b28;
    font-weight: 400;
}
footer ul li a{
font-family: 'Playfair Display SC', serif;
}
footer .img{
  width: 70px;
margin: 10px auto 0;
}
footer .img img{
  width: 70px;
}
.mobile-menu.navbar-inverse .navbar-toggle {
    border-color: #fff;
}
.mobile-menu .navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-right: 15px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
        margin-top: 24px;
    
}
.mobile-menu.navbar-inverse  .icon-bar {
    background-color: #fff;
}

.mobile-menu .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
        margin: 6px 0;
}
.mobile-menu .navbar-header {
    width: 100%;
}
.mobile-menu a.navbar-brand img {
    height: 90px;
    margin: 5px 0 5px 0px !important;
}
ul.dropdown-menu.show {
    background: #000;
    padding: 0 20px;
}
.mobile-menu{
    display: none;
    padding: 0px;
}
.navbar-inverse.mobile-menu .container-fluid {
    padding: 0;
}
.desk-menu{
    display: block;
}
.gform_wrapper .top_label .gfield_label, .gform_wrapper legend.gfield_label{
    display: none;
}
.ginput_container.ginput_container_text input, .ginput_container.ginput_container_textarea textarea {
    border: 0px;
    background: #f1f1f1;
    padding: 8px 15px !important;
        margin: 0 !important;
}
.ginput_container.ginput_container_text {
    margin: 0px !important;
}
label.gfield_label {
    display: none !important;
}
input#gform_submit_button_1, .more-btn, .gform_button {
  background: #00468c;
  border: 0px;
  padding: 5px 20px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}
a.more-btn, .gform_button {
    margin-top: 20px;
    display: inline-block;
        border: 2px solid transparent;
        transition: all .3s ease-in-out;
        border-radius: 30px;
}
a.more-btn:hover, .gform_button:hover {
border-color: #d68c29;
color: #fff;
background: #d58b27;
transition: all .3s ease-in-out;
}
a.more-btn img{
filter: brightness(0) invert(1);
width: 20px;
height: 13px;
margin-left: 10px;
margin-top: -5px;
}
a.more-btn:hover img{
/*filter: unset;*/
}

.wht-we-box {
transition: all .3s ease-in-out;
margin-bottom: 35px;
}
.wht-we-box .btm-text {
 padding: 20px;
background: #00468c;
clear: both;
color: #fff;
transition: all .3s ease-in-out;
}
.wht-we-box:hover{
    transform: scale(1.1);
transition: all .3s ease-in-out;
}
.wht-we-box:hover .btm-text {
background: #d68c28;
color: #fff;
}
.wht-we-box .btm-text h3{
    font-family: 'Playfair Display', serif;
font-size: 25px;
}

ul.clearfix.financial-info {
    text-align: center;
}
header nav.navbar ul ul.sub-menu li a {
    text-transform: capitalize;
    line-height: 22px;
    width: 100%;
    display: block;
    padding: 7px 20px;
    border-bottom: 1px solid #063524;
}
.blog-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.blog-img {
    width: 40%;
    height: auto;
}
.blog-content {
    width: 65%;
    float: left;
    position: absolute;
    top: 50px;
    right: 0;
    background: #fff;
    padding: 40px;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 6%);
    min-height: 350px;
}
.blog-content span {
    margin: 0 0 10px;
    display: block;
    color: #888;
    font-weight: 600;
}
.blog-sec .row {
    margin-bottom: 80px;
}
.blog-sec .row:last-child {
    margin: 0;
}
/* Circle */
figure {
    position: relative;
    overflow: hidden;
    margin: 20px 0 0 ;
}
figure::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255,255,255,.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}
figure:hover::before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}
@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}
@keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

.inner_banner {
    position: relative;
}
.inner_banner img {
    width: 100%;
    height: auto;
    min-height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
}
.inner_banner::before {
    content: '';
    background: -moz-linear-gradient(top,  rgba(82,82,82,1) 0%, rgba(117,121,144,0.86) 14%, rgba(117,121,144,0.75) 25%, rgba(117,121,144,0.67) 33%, rgba(117,121,144,0.6) 40%, rgba(117,121,144,0.54) 46%, rgba(136,142,168,0.47) 53%, rgba(149,154,183,0.42) 58%, rgba(188,193,217,0.3) 70%, rgba(188,193,217,0.23) 77%, rgba(218,221,238,0.14) 86%, rgba(242,244,250,0.07) 93%, rgba(250,251,253,0) 100%);
    background: -webkit-linear-gradient(top,  rgba(82,82,82,1) 0%,rgba(117,121,144,0.86) 14%,rgba(117,121,144,0.75) 25%,rgba(117,121,144,0.67) 33%,rgba(117,121,144,0.6) 40%,rgba(117,121,144,0.54) 46%,rgba(136,142,168,0.47) 53%,rgba(149,154,183,0.42) 58%,rgba(188,193,217,0.3) 70%,rgba(188,193,217,0.23) 77%,rgba(218,221,238,0.14) 86%,rgba(242,244,250,0.07) 93%,rgba(250,251,253,0) 100%);
    background: linear-gradient(to bottom,  rgba(82,82,82,1) 0%,rgba(117,121,144,0.86) 14%,rgba(117,121,144,0.75) 25%,rgba(117,121,144,0.67) 33%,rgba(117,121,144,0.6) 40%,rgba(117,121,144,0.54) 46%,rgba(136,142,168,0.47) 53%,rgba(149,154,183,0.42) 58%,rgba(188,193,217,0.3) 70%,rgba(188,193,217,0.23) 77%,rgba(218,221,238,0.14) 86%,rgba(242,244,250,0.07) 93%,rgba(250,251,253,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#525252', endColorstr='#00fafbfd',GradientType=0 );
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    height: 50%;
}
.banner__inner {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 60%;
    -webkit-transform: translateY(-60%);
    -ms-transform: translateY(-60%);
    transform: translateY(-60%);
    text-align: center;
    z-index: 2;
}

.banner__inner::before, 
.banner__inner::after {
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 15%;
    height: 337px;
    position: absolute;
    top: 50%;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-50%);
    opacity: 0.6;
    z-index: 1;
}
.banner__inner::before {
    background-image: url(../images/inner-banner-bg.png);
    background-position: center right;
    left: -30%;
    right: 0px;
}
.banner__inner::after {
    background-image: url(../images/inner-banner-bg.png);
    background-position: center left;
    right: -30%;
    left: 0px;
}
.banner__inner .container {
    position: relative;
    z-index: 5
}
.banner__inner h1 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 0px;
    display: inline-block;
    position: relative;
}
.banner__inner h1::before {
    content: '';
    background-image: url(../images/inner-banner-bg.png);
    display: inline-block;
    width: 295px;
    height: 337px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}
.banner__inner h1 span {
    position: relative;
    z-index: 5;
}

.bg_grey {
    background-color: #f4f4f4;
}
.line_center .img-star::before {
    left: -4px;
}

.financial_bg {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.financial_bg::before {
    content: '';
    background-color: rgba(255,255,255,0.6);
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
}
.financial_bg .container {
    position: relative;
    z-index: 2;
}
.financial_bg h2 {
    font-family: 'Playfair Display', serif;
    color: #000000;
    font-size: 2.875rem;
    text-align: center;
    margin-bottom: 70px;
}
.financial-info li {
    display: inline-block;
    position: relative;
    margin-right: 70px;
}
.financial-info li:last-child {
    margin-right: 0px;
}
.financial-info li a {
    color: #000000;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 500;
    padding-left: 95px;
    padding-top: 20px;
    word-break: break-word;
}
.financial-info li a:hover {
    color: rgba(0,0,0,0.75);
}
.financial-info li a::before {
    content: '';
    background-image: url(../images/icon-bg.png);
    background-repeat: no-repeat;
    display: inline-block;
    width: 65px;
    height: 72px;
    position: absolute;
    left: 0px;
    top: 0px;
}
.financial-info li a.mail_icon::after {
    content: '';
    background-image: url(../images/about-mail-icon.png);
    width: 19px;
    height: 15px;
    display: inline-block;
    position: absolute;
    left: 22px;
    top: 30px;
}
.financial-info li a.ph_icon::after {
    content: '';
    background-image: url(../images/about-ph-icon.png);
    width: 20px;
    height: 21px;
    display: inline-block;
    position: absolute;
    left: 22px;
    top: 25px;
}
a.btn-get-started {
    position: relative;
    padding-right: 70px;
    padding-left: 35px;
}
a.btn-get-started:hover {
    background-color: #205541;
    color: #ffffff;
}
a.btn-get-started::after {
    content: '';
    background-image: url(../images/btn-rt-arrow.png);
    background-repeat: no-repeat;
    display: inline-block;
    width: 23px;
    height: 15px;
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
a.btn-get-started:hover::after, 
.client-service-inner {
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
a.btn-get-started:hover::after {
    right: 20px;
}
.get-started-bottom p {
    color: #010202;
    font-weight: 500;
}
.get-started-bottom p:last-of-type {
    margin-bottom: 0px;
}

.client_service {
    padding-bottom: 80px;
    padding-top: 100px;
}
.col-client-service-list {
    margin-bottom: 30px;
}
.client-service-inner {
    border: 3px solid #ebebeb;
    padding: 35px 25px;
    height: 100%;
}
.client-service-inner:hover {
    background-color: #145541;
}
.client-service-inner h3 {
    color: #000000;
    font-size: 1.875rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.875rem;
    margin-bottom: 5px;
    margin-top: 30px;
    min-height: 60px;
    word-break: break-word;
}
.client-service-inner p:last-of-type {
    margin-bottom: 0px;
}
.client-service-inner:hover h3, 
.client-service-inner:hover p {
    color: #ffffff;
}
span.icon-box {
    background-color: #145541;
    width: 95px;
    height: 108px;
    display: inline-block;
    -webkit-clip-path: polygon(50% 0, 50% 0, 100% 30%, 100% 70%, 51% 100%, 50% 100%, 0 70%, 0 30%);
    clip-path: polygon(50% 0, 50% 0, 100% 30%, 100% 70%, 51% 100%, 50% 100%, 0 70%, 0 30%);
    text-align: center;
    line-height: 100px;
}
.client-service-inner:hover span.icon-box {
    background-color: #ffffff;
}
.icon-box img {
    height: auto;
    max-width: 100%;
}
.icon-box .hover_icon, .client-service-inner:hover .icon-box img {
    display: none;
}
.client-service-inner:hover .icon-box .hover_icon {
    display: inline-block;
}

.all_cal {
    padding-bottom: 60px;
    padding-top: 100px;
}
ul.plan__list {
    margin-top: 15px;
}
.plan__list li {
    position: relative;
    margin-bottom: 2px;
    padding-left: 35px;
}
.plan__list li:last-child {
    margin-bottom: 0px;
}
.plan__list li a {
    color: #3f3f3f;
}
.plan__list li a:hover {color: #000000;}
.plan__list li a::before {
    content: '';
    background-image: url(../images/box-tick.png);
    background-repeat: no-repeat;
    display: inline-block;
    width: 26px;
    height: 20px;
    position: absolute;
    left: 0px;
    top: 5px;
}
.plan_title span.icon-box {
    width: 50px;
    height: 60px;
    line-height: 60px;
}
.plan_title h5 {
    color: #000000;
    display: inline-block;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0px;
    padding-left: 46px;
    vertical-align: middle;
}
.image__Circule {
    position: relative;
    z-index: 2;
}
.image__Circule img {
    border-radius: 50%;
    border: 10px solid #ffffff;
    box-shadow: 6px 0px 40px rgba(195, 194, 194, 0.75);
    width: 100%;
    -webkit-animation: spin 200s linear infinite;
    -moz-animation: spin 200s linear infinite;
    animation: spin 200s linear infinite;
}
@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}
@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.image__circule__inner {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
span.cal-txt-box {
    background-color: rgba(255,255,255,0.74);
    width: 230px;
    height: 255px;
    display: inline-block;
    -webkit-clip-path: polygon(50% 0, 50% 0, 100% 30%, 100% 70%, 51% 100%, 50% 100%, 0 70%, 0 30%);
    clip-path: polygon(50% 0, 50% 0, 100% 30%, 100% 70%, 51% 100%, 50% 100%, 0 70%, 0 30%);
    text-align: center;
    line-height: 255px;
    font-family: 'Playfair Display', serif;
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
}
.our__planList {
    position: relative;
    margin-bottom: 60px;
}
.our__planList::after {
    content: '';
    background-color: #cccccc;
    border-radius: 50%;
    display: inline-block;
    width: 8px;
    height: 8px;
    position: absolute;
}
.our__planList::before {
    content: '';
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    z-index: 1;
}
.our__planList.firstBox {
    -ms-flex: 0 0 28%;
    flex: 0 0 28%;
    max-width: 28%;
    margin: 0 auto;
}
.our__planList.secondBox::before, 
.our__planList.fifthBox::before {
    background-image: url(../images/pointer-top-rt.png);
    background-size: contain;
    width: 142px;
    height: 83px;
}
.our__planList.firstBox::before {
    background-color: #cccccc;
    width: 2px;
    height: 100%;
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
    bottom: -102%;
}
.our__planList.firstBox::after {
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
}
.our__planList.secondBox::before, 
.our__planList.fourthBox::before {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}
.our__planList.secondBox::before {
    width: 75%;
    height: 65%;
    right: -170px;
    top: 185px;
}
.our__planList.fifthBox::before {
    width: 48%;
    height: 65%;
    left: -180px;
    top: 190px;
}
.our__planList.sixthBox::before, 
.our__planList.thirdBox::before {
    background-color: #cccccc;
    width: 60px;
    height: 2px;
}
.our__planList.sixthBox::before {
    left: -70px;
    top: 52%;
}
.our__planList.thirdBox::before {
    right: -45px;
    top: 52%;
}
.our__planList.secondBox::after {
    right: 60px;
    top: 182px;
}
.our__planList.fifthBox::after {
    left: -20px;
    top: 187px;
}
.our__planList.sixthBox::after {
    left: -16px;
    top: 88px;
}
.our__planList.thirdBox::after {
    right: 8px;
    top: 159px;
}
.our__planList.fourthBox::before, 
.our__planList.seventhBox::before {
    background-repeat: no-repeat;
    background-size: 100%;
}
.our__planList.fourthBox::before {
    background-image: url(../images/pointer-bottom-rt.png);
    width: 65%;
    height: 100%;
    left: 80%;
    top: -40px;
}
.our__planList.seventhBox::before {
    background-image: url(../images/pointer-bottom-rt.png);
    width: 65%;
    height: 100%;
    left: -70%;
    top: 0px;
}
.our__planList.fourthBox::after {
    right: 70px;
    top: 161px;
}
.our__planList.seventhBox::after {
    left: -20px;
    top: 201px;
}

/*.team_bg {
    background-repeat: repeat;
    background-color: #efefef;
    background-size: cover;
    padding-top: 90px;
}
.team_bg h2 {
    color: #000000;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 90px;
}
.col-team-list {
    margin-bottom: 90px;
}
.team_info_wrap {
    box-shadow: 8px 0px 35px rgba(202, 204, 207, 0.75);
    -webkit-box-shadow: 8px 0px 35px rgba(202, 204, 207, 0.75);
    color: #ffffff;
    position: relative;
    height: 100%;
}
.team_info_wrap, 
.team_info_wrap img {
    border-radius: 5px;
}
.team_info_wrap img {
    width: 100%;
    filter: gray;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}
.team_info_wrap::after {
    content: '';
    background-color: rgba(20,85,65,0.88);
    border-radius: 0px 0px 5px 5px;
    position: absolute;
    min-height: 150px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}
.team_info_wrap:hover::after, 
.team-info-content, 
.team-info-content a {
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}
.team_info_wrap:hover::after {
    background-color: rgba(20,85,65,0.88);
    position: absolute;
    min-height: auto;
    top: 0px;
    opacity: .7;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.team-info-content {
    position: absolute;
    left: 15px;
    right: 15px;
    top: auto;
    bottom: 0px;
    min-height: 135px;
    z-index: 3;
}
.team_info_wrap:hover .team-info-content {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.team-info-content span {display: block; font-size: 1rem; line-height: 1.5rem;}
.team-info-content h4, 
.team-info-content span.education_degree {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
.team-info-content h4 {font-size: 1.375rem; margin-bottom: 10px;}
.team-info-content span.designation {    font-weight: 500;
    letter-spacing: 1px;
    font-size: 15px;}
.team-info-content span.education_degree {
    margin-bottom: 10px;
}
.team-info-content p {
    font-weight: 400;
    margin-bottom: 25px;
    color: #fff;
}
.team-info-content a {
    background-image: url(../images/btn-rt-arrow.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto;
    color: #ffffff;
    font-weight: 600;
    padding-right: 50px;
}
.team-info-content a:hover {
    padding-right: 60px;
}
.team-info-content p, .team-info-content a {
    display: none;
}
.team_info_wrap:hover .team-info-content p {
    display: block;
}
.team_info_wrap:hover .team-info-content a {
    display: inline-block;
}

.team-single-info-wrap {
    padding-top: 90px;
}
.single-img-wrap {
    width: 92%;
}
.team-single-img img {
    box-shadow: 1px 0px 70px rgba(14, 26, 15, 0.25);
    -webkit-box-shadow: 1px 0px 70px rgba(14, 26, 15, 0.25);
    max-width: 100%;
    height: auto;
}
.team-single-rt h2, .team-single-rt h3 {
    color: #000000;
}
.team-single-rt h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.team-single-rt h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 30px;
}
.team-single-info li {
    margin-right: 0px;
    display: block;
    margin-bottom: 31px;
}
.team-single-info li:last-child {
    margin-bottom: 0px;
}
.team-single-info li a {
    font-size: 1.375rem;
}
.team-single-info li a:hover, 
.team-single-info li a:focus {
    color: #145541;
}
.team-single-info li a.mail_icon {
    text-transform: none;
}
.team-single-content {
    background-color: #f4f4f4;
    padding-top: 30px;
    padding-bottom: 90px;
}
.team-single-content p:last-of-type {
    margin-bottom: 0px;
}
*/

/*team pg css*/
.team .we-img img{
  max-width: 350px;
max-height: 225px;
height: 100%;
width: 100%;
object-fit: cover;
object-position: top;
}
.team .wht-we-box .btm-text {
  display: flex;
justify-content: center;
align-items: center;
}
.team .wht-we-box .btm-text h3 {
  font-size: 18px;
  line-height: 32px;
}
.team .tab-content > .tab-pane {
  margin-top: 26px;
}
.team .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #044389;
  border-color: #dee2e6 #dee2e6 #fff;
  position: relative;
}
.team .nav-tabs .nav-link {
  background: #eee;
}
.team .nav-tabs {
  max-width: max-content;
  margin: 0 auto;
}
.team .nav-tabs .nav-link.active::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #185190;
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  margin: 0px auto;
}
.team-d .team-member-card {
  margin: 0 50px 10px 0px;
  float: left;
  width: 300px;
}
.team-d .team-member-card .team-img img {
  max-width: 300px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
padding: 5px;
}

.contact_bg {
    position: relative;
    padding-top: 90px;
    padding-bottom: 90px;
    z-index: 1;
}
.contact_bg::before {
    content: '';
    width: 32%;
    position: absolute;
    background: #145541;
    height: 100%;
    top: 0;
    z-index: 1;
}
.contact_bg .container {
    position: relative;
    z-index: 3;
}
.contact-content {
    background-color: #ffffff;
    box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.15);
    padding: 30px;
    position: relative;
}
.contact_info {
    margin-bottom: 45px;
}
.contact_info h5 {
    color: #000000;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    font-weight: 600;
}
.contact_info a, .contact_info span {
    color: #000000;
    font-weight: 600;
    display: block;
    position: relative;
    padding-left: 60px;
    padding-top: 8px;
    word-break: break-word;
}
.contact_info a:hover, 
.contact_info a:focus {
    color: #145541;
}
.contact_info span.contact_icon {
    background-color: #145541;
    position: absolute;
    left: 0px;
    top: 0px;
    padding-left: 0px;
    padding-top: 0px;    
    width: 40px;
    height: 45px;
    line-height: 46px;
    display: inline-block;
    -webkit-clip-path: polygon(50% 0, 50% 0, 100% 30%, 100% 70%, 51% 100%, 50% 100%, 0 70%, 0 30%);
    clip-path: polygon(50% 0, 50% 0, 100% 30%, 100% 70%, 51% 100%, 50% 100%, 0 70%, 0 30%);
    text-align: center;
}
.contact_info span.contact_icon i {
    color: #ffffff;
    font-size: 20px;
}
.form_wrapper h2 {
    color: #000000;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}
button.sub-menu-toggle {
    display: none;
}
.menu-item-has-children {
    position: relative;
}
.page-id-321 .aboutYoung {
    padding: 70px 0;
}
.client-top img {
    max-width: 300px;
    max-height: 200px;
    margin: 0px auto 20px;
    display: block;
    width: 300px;
    height: 200px;
    object-fit: contain;
}
.wedo-sec {
    padding: 70px 0;
    background: #f1f1f1;
}
.wedo-box {
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    width: 240px;
    height: 240px;
    position: relative;
    display: block;
}

.wedo-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(20 85 65 / 74%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}
.wedo-content p {
    font-size: 16px;
    line-height: 22px;
    color: #ffffff;
    font-weight: 400;
}

.wedo-content p {
    margin-top: 30px;
}
.hover-box img {
    width: 100%;
    height: 100%;
}

.hover-box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 10px;
    transition: all .3s ease-in-out;
    opacity: 0;
}
.wedo-box:hover .hover-box {
    opacity: 1; 
    transition: all .3s ease-in-out;
}
.blog-single .blog-content {
    width: 100%;
    position: relative;
    top: unset;
}
.blog-single .blog-content .blog-img {
    float: right;
    margin: 0 0 30px 30px;
}
#finacial-calculator a.calculator-btn {
    color: #005985;
    padding: 10px;
    background: #eaeaea;
    display: block;
    margin-bottom: 20px;
    transition: all 0.5s ease !important;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    font-weight: 500;
    text-align: center;
}
#finacial-calculator {
    padding: 80px 0;
}
#finacial-calculator a.calculator-btn:hover, #finacial-calculator a.calculator-btn :focus {
    background: #205541;
    color: #fff;
}
.guide-txt ul li{
    width: 100%;
}
.res-txt h4{
    margin-top: 20px;
}
.blog-area {
    padding: 80px 0px;
}
.blog-area h2.blog-title {
    font-size: 22px;
}
.body-widget a.more-btn {
    margin: 0;
}
.body-widget {
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.show-sec .body-widget{
    margin: 0px;
    padding:  0px;
    border: 0;
}
.show-sec .body-widget img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}
.show-sec .blog-content {
    position: relative;
    top: unset;
    width: 100%;
    box-shadow: none;
    padding: 30px;
}
.show-sec h3.heading-title-yellow {
    font-size: 16px;
    text-align: left;
    color: #a8996e;
    text-transform: uppercase;
}
h2.heading-title2 {
    font-size: 22px;
    text-align: left;
    line-height: 32px;
    font-weight: 600;
    padding: 5px 0;
    margin:  0px;
}
.show-sec .body-widget span {
    text-align: left;
    font-weight: 500;
    padding-top: 5px;
}
.show-sec .bb-short p {
    text-align: left;
}
.show-sec .bb-short {
    margin-bottom: 20px;
}
.show-sec .blog-white {
    border: 1px solid #ddd;
    float: left;
    margin-bottom:  30px;
}
.show-sec .blog-read a {
    color: #a8996e;
    font-weight: 600;
}
.show-sec .blog-read {
    border-top: 1px solid #ddd;
    margin: 10px -30px -30px;
    padding: 4px;
    color: #a8996e;
}
.show-sec .nav-tabs {
    margin-bottom: 50px;
}
.show-sec .nav-tabs .nav-item.show .nav-link, .show-sec .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #a8996e;
    border-color: #a8996e #a8996e #a8996e;
    color: #fff;
}
.featured-image img {
    width: 100%;
    margin-top: 40px;    
    height: 250px;
    object-fit: cover;

}

.flagBody span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 0;
}
.flagBody {
    width: auto;
    height: auto;
    background: #a8996e;
    position: absolute;
    top: 7px;
    right: 15px;
    padding: 7px 20px;
    line-height: 19px;
    border-radius: 5px 5px 0 0;
}
.featured-summary h2 {
    padding: 10px 0;
}

.featured-summary h2 a {
    font-size: 26px;
}

@media (max-width:1199px){
.commn-sec.process-top{
text-align: center;
}
.our-process .icon-boxes {
  padding: 20px 0;
}
.process-img img {
  max-height: 550px;
}
.our-process .icon-boxes.px-lg-5 {
  padding-left: 0rem !important;
}
.inner-nan .carousel-caption {
  bottom: 11%;
}
.commn-sec.whoWerae-top {
  text-align: center;
}
.whoWerae .what-img1 img {
  padding-bottom: 15px;
}
.ftr-btm p {
    margin-bottom: 10px;
}
    a.we-do-box {
        text-align: center;
    }
    .we-do-box p {
        border-left: 0px;
    }
    .sec5::before {
        width: 100%;
    }
    .hfrm-box h2 {
        color: #fff;
    }
    .banner.inner-nan, .banner.inner-nan img {
  height: 350px;
}
.get-now{
  text-align: center;
}
}

@media (min-width:992px){

    .menu-item-has-children:hover ul.sub-menu {
        transition: all .3s ease-in-out;
        opacity: 1;
        top: 45px;
        display: block !important;
    }
    ul.sub-menu li {
        background: #00468c;
    }
    ul.sub-menu::after {
        content: '';
        width: 10px;
        height: 10px;
        background: #fff;
        position: absolute;
        transform: rotate(  45deg);
        left: 10px;
        top: -7px;
        z-index: -3;
    }
    ul.sub-menu {
        background: #205541;
        position: absolute;
        left: 15px;
        top: 60px;
        opacity: 0;
        transition: all .3s ease-in-out;
        border-top: 2px solid #fff;
        z-index: 1;
        min-width: 140px;
        display: none;
    }

}
.cc-txt .sec1-rht iframe {
    border: 11px solid #e8e8e8;
    border-radius: 5px;
}

/*****************
@
@   Responsive
@
*****************/

@media (min-width:1500px) and (max-width:5500px){

.container-fluid{
  max-width: 1298px;
}
}
@media (max-width:1199px){
header .col-xl-5:nth-child(1) {
  flex: 0 0 37.667%;
  max-width: 37.666667%;
}
.wht-we-box {
  text-align: center;
}
.team .nav-tabs .nav-item {
  width: 100%;
  text-align: center;
}
.team .we-img img {
  max-height: 210px;
}
.team .wht-we-box .btm-text {
  min-height: 92px;
  padding: 10px;
}
.navbar-nav .get {
  margin-left: 5px;
}
.ftr-dscr{
  margin-top: 30px;
}
.banner h1 span {
  display: inline;
}
.sec4 img {
  height: auto;
}
.whoWerae::before {
    display: none;
}
.commn-sec.whoWerae {
  text-align: center;
  padding-bottom: 40px;
  padding-top: 40px;
}
.commn-sec.aboutOtherText{
  text-align: center;
  padding-top: 30px;
}
.about-para {
  padding-left: 0;
  text-align: center;
}
.aboutUs img {
  height: auto;
  max-width: 400px;
  margin-bottom: 25px;
  width: 100%;
}
.aboutText ul li {
  text-align: left;
}
.what-img1::before, .what-img1::after, .what-sec1.half::before, .what-sec2.half1::before {
    display: none;
}
.what-sec, .what-sec1, .what-sec2{
  text-align: center;
}
.what-img1 img {
  max-width: 400px;
  min-height: 100%;
  margin-bottom: 15px;
}
.about {
  padding-bottom: 30px;
  padding-top: 30px;
}
.left-head {
  display: block;
  padding: 0;
  text-align: center;
}
.left-head h2 {
  width: 100%;
}
.left-head .advantage-blue-text {
  padding: 0;
  border-left: 0;
  margin-left: 0;
}
.about .textBox .us {
  margin-left: 0;
  margin-right: 0;
  margin-top: 20px;
  padding: 50px;
  text-align: center;
}
.team-member-card {
  max-width: 570px;
  margin: 0 auto 10px;
  float: none;
}
.about .imageBox {
  height: 100%;
  width: 100%;
  min-height: auto;
  max-width: 400px;
  margin: 0 auto;
}
.mission {
  text-align: center;
}
footer .col-sm-12.d-flex{
  display: block !important;
}
.banner video, .banner img {
  height: 700px;
}
.bg-dot::before, .img-star {
  display: none;
}
.video__wrapper {
  margin: 20px auto;
}
.sec1-rht {
  text-align: center;
}
footer {
  text-align: center;
}
ul.navbar-nav li a {padding-left: 5px; padding-right: 5px}
.sec1 .img-box img {max-width: 90%;}
.financial_bg h2 {font-size: 2.375rem;}
.financial-info li { margin-right: 30px;}
.financial-info li a {padding-left: 75px;}

.all_cal {
    padding-top: 10px;
}
.bottm-content li {
    width: 100%;
    text-align: left;
}
header nav.navbar ul li a {
    font-size: 10px;
}
.our__planList.firstBox {
    padding-top: 90px;
    -ms-flex: 0 0 34%;
    flex: 0 0 34%;
    max-width: 34%;
}
.our__planList.secondBox {
    padding-top: 60px;
}
.our__planList.fifthBox {
    padding-top: 120px;
}
.our__planList.secondBox::before {
    width: 78%;
    height: 65%;
    right: -170px;
    top: 275px;
}
.our__planList.secondBox::after {
    right: 16.5%;
    top: 90.5%;
}
.our__planList.fifthBox::before {
    width: 58%;
    height: 65%;
    left: -175px;
    top: 310px;
}
.our__planList.fifthBox::after {
    left: -4%;
    top: 93%;
}
.our__planList.thirdBox::before {
    right: -65px;
    top: 52%;
}
.our__planList.thirdBox::after {
    right: -8px;
    top: 51%;
}
.our__planList.fourthBox::before {
    top: -80px;
}
.our__planList.fourthBox::after {
    right: 50px;
    top: 30.75%;
}
.our__planList.seventhBox::after {
    left: -20px;
    top: 40.25%;
}
.single-img-wrap {
    width: 90%;
}
.team-single-info li a {
    font-size: 1.125rem;
}
.team-single-rt h3 {
    font-size: 1.75rem;
}
.wedo-sec .col-xl-3 {
    min-width: 33%;
    max-width: 33%;
}
.wedo-box {
    margin: 0px auto;
    overflow: hidden;
}
.mission a.more-btn{
  margin: 20px auto;
}
}

@media (max-width:991px){
.team .modal-header h5 {
  text-align: center;
  margin: 0 auto;
}
.banner.inner-nan, .banner.inner-nan img {
  height: 300px;
}
.inner-nan .carousel-item h1 {
  font-size: 35px;
  line-height: 50px;
}
.commn-sec {
  padding: 40px 0;
  text-align: center;
}
.what-sec1.half, .what-sec2.half1 {
  padding: 30px 0px;
}
.commn-sec.contact {
  padding-top: 40px;
}
.our-process .pl-0 {
  padding-left: 15px !important;
}
.contact a.more-btn{
    margin-bottom: 20px;
}
.words-box p {
  text-align: center;
}
.words-pg .logo-main1 {
  margin-bottom: 20px;
max-width: 300px;
margin: 0 auto 20px;
}
.team-d .team-member-card {
  margin: 0 auto;
  float: none;
  width: 300px;
}
.team-d{
  text-align: center;
}
.team .we-img img {
  max-width: 402px;
  max-height: 315px;
}
footer #menu-quick-links {
  display: block;
}
footer ul li {
  float: none;
  padding: 3px 0;
}
.our-process .icon-boxes.px-lg-5 {
  padding-left: 2rem !important;
}
.our-process .icon-box .title {
  margin-left: 0;
  text-align: center;
}
.our-process .icon-box .description {
  margin-left: 0;
  text-align: center;
}
.our-process .icon-box .icon {
  float: none;
  margin: 0 auto;
}
.sec4 img {
  height: auto;
  max-width: 400px;
  margin: 0 auto;
  float: none;
}
.wht-we-box .btm-text {
  max-width: 400px;
  margin: 0 auto;
}
.banner video, .banner img {
  height: 500px;
}
.banner .carousel-caption {
  bottom: 35% !important;
}
.banner h1 {
  font-size: 40px;
  line-height: 55px;
}
.inner-nan .carousel-caption {
  bottom: 22%;
}
.our-process .icon-boxes {
  padding: 40px;
}
header nav.navbar {
  padding: 0px 0 0;
  margin-top: 0;
}
.mission-p p {
  width: 100%;
  margin: 0px auto 0;
}
.mobile-menu .navbar-toggle {
  padding: 0;
  margin-right: 30px;
  margin-top: 8px;
  margin-bottom: 0;
  border: 0;
  margin-top: 27px;
}
.banner .carousel-control-prev {
  left: 0;
  width: 11%;
}
.banner .carousel-control-next {
  right: 0;
  width: 11%;
}
.wht-we-box {
  margin-bottom: 50px;
}
.main-mission {
  flex-wrap: wrap;
  justify-content: center;
}
.mission-box {
  margin-bottom: 50px;
}
.mission-box:nth-child(4) {
  border-left: 0;
}

    .mobile-menu{
        display: block;
    }
    ul.sub-menu {
        position: relative;
        top: 0;
        left: 0;
    }
    .navbar-brand {
        margin: 0 10px;
    }
    button.sub-menu-toggle::before {
content: '+';
position: absolute;
left: 9px;
color: #000;
text-align: left;
text-indent: 0;
font-size: 22px;
line-height: 29px;
    }
    button.sub-menu-toggle {
display: block;
text-indent: 200px;
width: 30px;
height: 30px;
border: 0;
overflow: hidden;
position: absolute;
right: 30px;
top: 8px;
    }
    
    ul.nav.navbar-nav > li a{
        padding: 0 20px;    
    }
    ul.nav.navbar-nav > li {
        border-bottom: 1px solid #bebfc1;
    }
    ul.nav.navbar-nav .sub-menu {
        width: 100%;
        background: #212121;
    }
    .financial-info li a::before {
        left: 0 !important;
    }
    .wedo-sec .col-xl-3 {
        min-width: 50%;
        max-width: 50%;
    }
    .financial-info li a.mail_icon::after {
        left: 23px !important;
    }
    .blog-single .blog-content .blog-img {
        float: unset;
        margin: 0px auto 30px;
        width: 400px;
    }
    .blog-single .blog-content {
        text-align: center;
    }
    .mobile-menu ul.nav.navbar-nav {
        background-color: #01458b;
    }
    .desk-menu, .commn-sec h2 br, .img-star::after{
        display: none;
    }    
    .logo a {
        width: 270px;
    }
    .banner video {
        height: 400px;
    }
    .banner-btm h1 {
        text-align: center;
    }
    .sec1, .banner-btm h2, a.we-do-box {
        text-align: center;
    }
    .sec1-rht {
        margin-top: 50px;
    }
    .we-do-box p {
        border: none;
    }
    .client-box {
        width: calc(100% - 260px);
    }
    .sec5::before, .hfrm-box img{
        width: 100%;
    }
    .hfrm-box {
        padding-left: 0;
        margin-top: 40px;
    }
    header .navbar.bg-light .navbar-collapse{
        background: #fff;
    }
    .menu-new ul{
        width: 100%;
        position: relative
    }
    .menu-new ul li a{
        text-align:center;
    }
    .menu-new ul ul, .menu-new ul{
        display: none;
    }
    .menu-new li:hover>ul{
        display: block;
    }
    .menu-new ul:after{
        left: 50%;
    }
    .logo a {
        width: 140px;
    }

    .banner__inner::before, .banner__inner::after {
        width: 25%;
    }
    .banner__inner::before {
        left: -50%;
    }
    .banner__inner::after {
        right: -50%;
    }
    .p100.financial_bg {
        padding-bottom: 30px;
        padding-top: 45px;
    }
    .financial_bg {
        text-align: center;
    }
    .financial_bg h2 {
        margin-bottom: 30px;
    }
    .financial-info li {
        margin-right: 0px;
        margin-bottom: 45px;
    }
    .financial-info li a {
        font-size: 1.125rem;
    }
    .client_service {
        padding-bottom: 30px;
        padding-top: 50px;
    }

    .all_cal {
        padding-top: 45px;
        padding-bottom: 30px;
    }
    .image__Circule img {width: 70%;}
    .our__planList::before, .our__planList::after {display: none;}
    .our__planList {
        margin-bottom: 45px;
    }
    .our__planList.firstBox {
        padding-top: 0px;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .our__planList.secondBox {
        padding-top: 0px;
        margin-top: 45px;
    }
    .our__planList.fifthBox {
        padding-top: 0px;
        margin-top: 30px;
    }
    .plan_title h5 {
        padding-left: 15px;
    }
    .plan__list li {
        display: inline-block;
        padding-right: 35px;
        vertical-align: top;
        width: 49%;
    }

    .img-star {
        margin-bottom: 15px;
        position: relative;
        text-align: center;
        padding-bottom: 60px;
    }
    .img-star::before {
        width: 40%;
        height: 1px;
        top: 21px;
    }
    .line_center .img-star::before {
        left: 0px;
    }
    .img-star img {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .img-star::after {
        content: '';
        width: 40%;
        height: 1px;
        top: 21px;
        right: 0px;
        background: #dadada;
        position: absolute;
    }
    .team-single-info-wrap {
        text-align: center;
    }
    .single-img-wrap {
        width: 100%;
    }
    .team-single-rt {
        padding-left: 0px;
    }
    .team-single-info li {
        display: inline-block;
        padding-right: 15px;
    }
    .team-single-info li a {
        text-align: left;
        display: block;
    }

    .contact_bg::before {
        content: '';
        width: 100%;
        position: absolute;
        background: #145541;
        height: 45%;
        top: 0;
        z-index: 1;
    }
    .contact_info {
        display: inline-block;
        width: 49%;
        vertical-align: top;
    }
    .contact_info span br {
        display: none;
    }
    .contact-rt {
        margin-top: 60px;
        text-align: center;
    }
   .ftr-btm p {
  margin: 0px 0 10px;
}
}
@media (max-width:600px){
.words-box p {
  padding: 20px 0;
}
.inner-nan .carousel-item h1 {
  font-size: 25px;
  line-height: 40px;
}
.banner a.more-btn {
  font-size: 12px;
}
.banner .carousel-control-prev-icon, .banner .carousel-control-next-icon {
  width: 6px;
  height: 15px;
}
.banner .carousel-caption {
 bottom: 14%;
right: 8%;
left: 8%;
}
.banner p {
  width: 100%;
  font-size: 13px;
  line-height: 22px;
}
.banner h1 {
  font-size: 20px;
  line-height: 30px;
}
.banner .bg-arrow {
  padding: 8px;
}
.mission-box {
  border-left: 0;
  padding: 20px 0px 0px 0px;
}
.video__wrapper {
  width: 100%;
}
.about-left video {
  width: 100%;
  max-width: 100%;
  height: 260px;
}
    .banner-btm h1 {
        font-size: 40px;
        letter-spacing: 12px;
        line-height: 54px;
        padding-top: 30px;
        margin: 10px;
    }
    .inner-nan .carousel-caption {
  bottom: 16%;
  right: 0;
  left: 0;
}
    .client-box i {
        right: 30px;
        bottom: unset;
        top: 25px;
    }
    .wedo-sec .col-xl-3 {
        min-width: 100%;
        max-width: 100%;
    }
    .financial-info li a.ph_icon::after {
        width: 12px;
        height: 14px;
        left: 26px;
        top: 30px;
        background-size: contain;
        background-repeat: no-repeat;
    }
    ul.clearfix.financial-info {
        text-align: left;
    }
    .financial-info li a::before {
        left: 0 !important;
    }
    .financial-info li a.mail_icon::after {
        left: 23px !important;
    }
    .commn-sec {
        padding: 30px 0;
        position: relative;
    }
    .sec1 .img-box img, .counter-tbl{
        max-width: 100%;
    }
    .hfrm-box {
        padding-left: 20px;
    }
    .sec5 h2 {
        color: #fff;
    }
    .commn-sec {
        padding: 30px 0;
    }
    .banner video, .banner img {
        height: 400px;
    }
    .banner-btm.wow h1 {
        margin-top: -140px;
    }
    .banner-btm h2 {
        color: #000;
        text-transform: uppercase;
            line-height: 46px;
    }
    .blog-single .blog-content {
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
    .blog-single .blog-content .blog-img {
        max-width: 100%;
    }
    .blog-single.contact_bg::before, .banner-btm::before{
        display: none;
    }
    .counter-tbl tr {
        flex-wrap: wrap;
    }
    .counter-tbl td {
        width: 100%;
    }
    .mobile-menu a.navbar-brand img {
        height: 75px;
margin: 0 !important;
    }
    .img-star{
        display: none;
    }
    .sec1 .img-box img {
        max-width: 100%;
    }
    .sec1-rht {
        padding-left: 15px;
        margin-top: 20px;
        }
    .sec4 .col-xl-6 {
        display: block !important;
    }
    .client-box {
        width: 100%;
        height: auto;
        position: relative;
    }
    footer {
        padding: 0px 0 0;
    }
    footer h3 {
        padding-bottom: 0;
        padding-top: 20px;
    }
    .sec4 img {
        float: unset;
        margin: 0px auto;
    }
    .ftr-btm {
        display: block !important;
        text-align: center;
    }
    .ftr-btm .d-flex.align-items-center {
        justify-content: center;
        margin-top: 10px;
    }
    .banner__inner::before, .banner__inner::after {display: none;}
    .inner_banner img {min-height: 450px;}
    .banner__inner h1 {font-size: 2.5rem;}
    .financial_bg h2 {font-size: 1.5rem;}
    .financial-info li {margin-bottom: 15px;}
    .financial-info li a {font-size: 0.9375rem;}
    .client-service-inner h3 {min-height: auto; margin-bottom: 25px;}
    span.cal-txt-box {width: 140px; height: 155px; line-height: 155px; font-size: 1.125rem;}
    .plan__list li {padding-right: 0px; width: 100%;}
    .team_bg {padding-top: 45px;}
    .team_bg h2 {font-size: 2rem;}
    .team_bg h2, .col-team-list {margin-bottom: 45px;}
    .team-info-content p {margin-bottom: 10px;}
    .team-single-info li {margin-bottom: 30px;}
    .team-single-rt h2 {font-size: 2rem;}
    .team-single-rt h3 {font-size: 1.25rem;}

    .contact-content {text-align: center;}
    .contact_info {display: block; width: 100%;}
    .contact_info h5 {margin-bottom: 5px;}
    .contact_info a, .contact_info span {padding-left: 0px;}
    .contact_info span.contact_icon {position: relative; display: block; margin-left: auto; margin-right: auto;}

}
@media (max-width:480px){

.banner__inner h1 {
    font-size: 1.5rem;
}
.sec1-rht .more-btn{
    margin-left: 0px;
}
}
