/* hjkhkdhsaj */
body {
    font-family: 'Open Sans', sans-serif !important;



    overflow-x: hidden !important;
}

/* navbar */
.navbar-light .navbar-nav .nav-link.active {
    padding: 2px 10px;

}
.navbar-nav{
    font-weight: 600;
}
.logo-a {
    width: 20%;
}
link:focus, .navbar-light .navbar-nav .nav-link:hover{
    color: #d4ad6a !important;
}
link:focus, .navbar-light .navbar-nav .nav-link.active{
    color: #d4ad6a !important;
}
.nav-link {
    font-size: 13px;
    color: #515151;
    padding: 0px;
}

.nav-link:hover {
    font-weight: bold;
    color: #d4ad6a !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #000 !important;
}

.call-btn {
    border: 1px solid #EEEEEE;
    padding: 1;
    color: #002F6C;
    padding: 13px 35px;
    background: transparent;
    font-size: 14px;
}
.wtsp-sticky{
   
        right: 26px;
        bottom: 100px;
        position: fixed;
}
.li-icon1{
    color: #002F6C !important;
}
.li-icon2{
    color:#d4ad6a !important;
}
.call-btn:hover {
    border: 1px solid #EEEEEE;
    padding: 1;
    color: #ffffff;
    padding: 13px 35px;
    background: #B79B59;
    transition-duration: 0.5s;
    font-size: 14px;
}

.banner-mt {
    margin-top: 6rem !important;
}
.team-shape{
    position: relative;
}
.team-shape::after{
    content: "";
    width: 105px;
    height: 151px;
    background-color: #002F6C;
    position: absolute;
    right: -47px;
    bottom: -51px;
    rotate: 38deg;
}

.team-shape:hover.team-shape::after{
    display: none;
}
.w-team{
    width: 80%;
}



animated {
    animation-duration: 1s;
    animation-fill-mode: both;
  }
  
  .animated.infinite {
    animation-iteration-count: infinite;
  }
  
  .animated.hinge {
    animation-duration: 2s;
  }
  
  .animated.flipOutX,
  .animated.flipOutY,
  .animated.bounceIn,
  .animated.bounceOut {
    animation-duration: .75s;
  }
  
  @keyframes bounce {
    from, 20%, 53%, 80%, to {
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
      transform: translate3d(0,0,0);
    }
  
    40%, 43% {
      animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
      transform: translate3d(0, -30px, 0);
    }
  
    70% {
      animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
      transform: translate3d(0, -15px, 0);
    }
  
    90% {
      transform: translate3d(0,-4px,0);
    }
  }
  
  .bounce {
    animation-name: bounce;
    transform-origin: center bottom;
  }
  
  @keyframes flash {
    from, 50%, to {
      opacity: 1;
    }
  
    25%, 75% {
      opacity: 0;
    }
  }
  
  .flash {
    animation-name: flash;
  }
  
  
  @keyframes pulse {
    from {
      transform: scale3d(1, 1, 1);
    }
  
    50% {
      transform: scale3d(1.05, 1.05, 1.05);
    }
  
    to {
      transform: scale3d(1, 1, 1);
    }
  }
  
  .pulse {
    animation-name: pulse;
  }
  
  @keyframes rubberBand {
    from {
      transform: scale3d(1, 1, 1);
    }
  
    30% {
      transform: scale3d(1.25, 0.75, 1);
    }
  
    40% {
      transform: scale3d(0.75, 1.25, 1);
    }
  
    50% {
      transform: scale3d(1.15, 0.85, 1);
    }
  
    65% {
      transform: scale3d(.95, 1.05, 1);
    }
  
    75% {
      transform: scale3d(1.05, .95, 1);
    }
  
    to {
      transform: scale3d(1, 1, 1);
    }
  }
  
  .rubberBand {
    animation-name: rubberBand;
  }
  
  @keyframes shake {
    from, to {
      transform: translate3d(0, 0, 0);
    }
  
    10%, 30%, 50%, 70%, 90% {
      transform: translate3d(-10px, 0, 0);
    }
  
    20%, 40%, 60%, 80% {
      transform: translate3d(10px, 0, 0);
    }
  }
  
  .shake {
    animation-name: shake;
  }
  
  @keyframes headShake {
    0% {
      transform: translateX(0);
    }
  
    6.5% {
      transform: translateX(-6px) rotateY(-9deg);
    }
  
    18.5% {
      transform: translateX(5px) rotateY(7deg);
    }
  
    31.5% {
      transform: translateX(-3px) rotateY(-5deg);
    }
  
    43.5% {
      transform: translateX(2px) rotateY(3deg);
    }
  
    50% {
      transform: translateX(0);
    }
  }
  
  .headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake;
  }
  
  @keyframes swing {
    20% {
      transform: rotate3d(0, 0, 1, 15deg);
    }
  
    40% {
      transform: rotate3d(0, 0, 1, -10deg);
    }
  
    60% {
      transform: rotate3d(0, 0, 1, 5deg);
    }
  
    80% {
      transform: rotate3d(0, 0, 1, -5deg);
    }
  
    to {
      transform: rotate3d(0, 0, 1, 0deg);
    }
  }
  
  .swing {
    transform-origin: top center;
    animation-name: swing;
  }
  
  @keyframes tada {
    from {
      transform: scale3d(1, 1, 1);
    }
  
    10%, 20% {
      transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }   
  
    30%, 50%, 70%, 90% {
      transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
  
    40%, 60%, 80% {
      transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
  
    to {
      transform: scale3d(1, 1, 1);
    }
  }
  
  .tada {
    animation-name: tada;
  }
  

  
  @keyframes wobble {
    from {
      transform: none;
    }
  
    15% {
      transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
  
    30% {
      transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
  
    45% {
      transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
  
    60% {
      transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
  
    75% {
      transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
  
    to {
      transform: none;
    }
  }
  
  .wobble {
    animation-name: wobble;
  }
  
  @keyframes jello {
    from, 11.1%, to {
      transform: none;
    }
  
    22.2% {
      transform: skewX(-12.5deg) skewY(-12.5deg);
    }
  
    33.3% {
      transform: skewX(6.25deg) skewY(6.25deg);
    }
  
    44.4% {
      transform: skewX(-3.125deg) skewY(-3.125deg);
    }
  
    55.5% {
      transform: skewX(1.5625deg) skewY(1.5625deg);
    }
  
    66.6% {
      transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
  
    77.7% {
      transform: skewX(0.390625deg) skewY(0.390625deg);
    }
  
    88.8% {
      transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
  }
  
  .jello {
    animation-name: jello;
    transform-origin: center;
  }
  
  @keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
  
    0% {
      opacity: 0;
      transform: scale3d(.3, .3, .3);
    }
  
    20% {
      transform: scale3d(1.1, 1.1, 1.1);
    }
  
    40% {
      transform: scale3d(.9, .9, .9);
    }
  
    60% {
      opacity: 1;
      transform: scale3d(1.03, 1.03, 1.03);
    }
  
    80% {
      transform: scale3d(.97, .97, .97);
    }
  
    to {
      opacity: 1;
      transform: scale3d(1, 1, 1);
    }
  }
  
  .bounceIn {
    animation-name: bounceIn;
  }
  
  @keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
  
    0% {
      opacity: 0;
      transform: translate3d(0, -3000px, 0);
    }
  
    60% {
      opacity: 1;
      transform: translate3d(0, 25px, 0);
    }
  
    75% {
      transform: translate3d(0, -10px, 0);
    }
  
    90% {
      transform: translate3d(0, 5px, 0);
    }
  
    to {
      transform: none;
    }
  }
  
  .bounceInDown {
    animation-name: bounceInDown;
  }
  
  @keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
  
    0% {
      opacity: 0;
      transform: translate3d(-3000px, 0, 0);
    }
  
    60% {
      opacity: 1;
      transform: translate3d(25px, 0, 0);
    }
  
    75% {
      transform: translate3d(-10px, 0, 0);
    }
  
    90% {
      transform: translate3d(5px, 0, 0);
    }
  
    to {
      transform: none;
    }
  }
  
  .bounceInLeft {
    animation-name: bounceInLeft;
  }
  
  @keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
  
    from {
      opacity: 0;
      transform: translate3d(3000px, 0, 0);
    }
  
    60% {
      opacity: 1;
      transform: translate3d(-25px, 0, 0);
    }
  
    75% {
      transform: translate3d(10px, 0, 0);
    }
  
    90% {
      transform: translate3d(-5px, 0, 0);
    }
  
    to {
      transform: none;
    }
  }
  
  .bounceInRight {
    animation-name: bounceInRight;
  }
  
  @keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
      animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
  
    from {
      opacity: 0;
      transform: translate3d(0, 3000px, 0);
    }
  
    60% {
      opacity: 1;
      transform: translate3d(0, -20px, 0);
    }
  
    75% {
      transform: translate3d(0, 10px, 0);
    }
  
    90% {
      transform: translate3d(0, -5px, 0);
    }
  
    to {
      transform: translate3d(0, 0, 0);
    }
  }
  
  .bounceInUp {
    animation-name: bounceInUp;
  }
  
  @keyframes bounceOut {
    20% {
      transform: scale3d(.9, .9, .9);
    }
  
    50%, 55% {
      opacity: 1;
      transform: scale3d(1.1, 1.1, 1.1);
    }
  
    to {
      opacity: 0;
      transform: scale3d(.3, .3, .3);
    }
  }
  
  .bounceOut {
    animation-name: bounceOut;
  }
  
  @keyframes bounceOutDown {
    20% {
      transform: translate3d(0, 10px, 0);
    }
  
    40%, 45% {
      opacity: 1;
      transform: translate3d(0, -20px, 0);
    }
  
    to {
      opacity: 0;
      transform: translate3d(0, 2000px, 0);
    }
  }
  
  .bounceOutDown {
    animation-name: bounceOutDown;
  }
  
  @keyframes bounceOutLeft {
    20% {
      opacity: 1;
      transform: translate3d(20px, 0, 0);
    }
  
    to {
      opacity: 0;
      transform: translate3d(-2000px, 0, 0);
    }
  }
  
  .bounceOutLeft {
    animation-name: bounceOutLeft;
  }
  
  @keyframes bounceOutRight {
    20% {
      opacity: 1;
      transform: translate3d(-20px, 0, 0);
    }
  
    to {
      opacity: 0;
      transform: translate3d(2000px, 0, 0);
    }
  }
  
  .bounceOutRight {
    animation-name: bounceOutRight;
  }
  
  @keyframes bounceOutUp {
    20% {
      transform: translate3d(0, -10px, 0);
    }
  
    40%, 45% {
      opacity: 1;
      transform: translate3d(0, 20px, 0);
    }
  
    to {
      opacity: 0;
      transform: translate3d(0, -2000px, 0);
    }
  }
  
  .bounceOutUp {
    animation-name: bounceOutUp;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  .fadeIn {
    animation-name: fadeIn;
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translate3d(0, -100%, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  .fadeInDown {
    animation-name: fadeInDown;
  }
  
  @keyframes fadeInDownBig {
    from {
      opacity: 0;
      transform: translate3d(0, -2000px, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  .fadeInDownBig {
    animation-name: fadeInDownBig;
  }
  
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translate3d(-100%, 0, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  .fadeInLeft {
    animation-name: fadeInLeft;
  }
  
  @keyframes fadeInLeftBig {
    from {
      opacity: 0;
      transform: translate3d(-2000px, 0, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  .fadeInLeftBig {
    animation-name: fadeInLeftBig;
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translate3d(100%, 0, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  .fadeInRight {
    animation-name: fadeInRight;
  }
  
  @keyframes fadeInRightBig {
    from {
      opacity: 0;
      transform: translate3d(2000px, 0, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  .fadeInRightBig {
    animation-name: fadeInRightBig;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  .fadeInUp {
    animation-name: fadeInUp;
  }
  
  @keyframes fadeInUpBig {
    from {
      opacity: 0;
      transform: translate3d(0, 2000px, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  .fadeInUpBig {
    animation-name: fadeInUpBig;
  }
  
.zoomIn {
    animation-name: zoomIn;
  }
  
  @keyframes zoomInDown {
    from {
      opacity: 0;
      transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
      animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
  
    60% {
      opacity: 1;
      transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
      animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
  }
  
  .zoomInDown {
    animation-name: zoomInDown;
  }
  






.grow img{
transition: 1s ease;
}

.grow img:hover{
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
transition: 1s ease;
}













/* client-testmonial */

.site-logo {
    width: 218.33px !important;
    margin-right: 50px;
}
.btn {
    border-radius: 5px;
    font-weight: normal;
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 30px;
    cursor: pointer;
}
.btn-theme {
    background: var(--theme-color1);
    color: #212121;
}

.service-slider .slick-list .slick-track{
    width:5300px !important;
   
}

.c-container {
   margin: auto;
   width: 93%;
   position: relative;
   z-index: 1;
}

.btn-outline-white {
   color: #fff;
   background-color: rgba(255, 255, 255, 0.1);
   background-image: none;
   border-width: 2px;
   border-color: #fff;
   font-weight: 500;
   -webkit-transition: all .2s;
   transition: all .2s;
}
.btn {
   border-radius: 5px;
   font-weight: normal;
   font-size: 15px;
   letter-spacing: 0.02em;
   line-height: 12px;
   text-align: center;
   font-weight: 600;
   font-size: 14px;
   padding: 14px 30px;
   cursor: pointer;
}
.btn-outline-white:hover {
   background-color: #fff;
   color: var(--text-dark);
}
/* common css up */

.testimonial p {
    font-size: 28px;
    letter-spacing: 0.02em;
    line-height: 35px;
}
.testimonial .name {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 35px;
    text-align: left;
}
.testimonial .designation {
    font-size: 14px;
    letter-spacing: 0.04em;
    text-align: left;
    color: #fff;
    opacity: 0.65;
}
.unt {
    margin-bottom: 20px;
    margin-top: 60px;
}
.hero-text {
    font-size: 30px;
    letter-spacing: 0.02em;
    color: #fff;
}
.gallery-thumbs {
    height: 100%;
}
.gallery-thumbs .swiper-wrapper {
    align-items: center;
}
.gallery-thumbs .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 250px !important;
    height: 330px;
    position: relative;
}
.gallery-thumbs .swiper-slide img {
    filter: contrast(0.5) blur(1px);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.gallery-thumbs .swiper-slide-active img {
    filter: contrast(1) blur(0px) !important;
}
.flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.flex-row .flex-col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.gallery-thumbs .swiper-wrapper {
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
}


.testimonial-section .quote {
   
   height: 100%;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   padding-left: 100px;
   padding-right: 100px;
}
.swiper-container.testimonial {
   height: 80vh;
}
.testimonial{
    background-image: url("../images/dot-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.testimonial-section .user-saying {
   background: var(--theme-color2);
   width: 60%;
   color: #000000;
   height: 100%;
}
.testi-user-img {
   width: 40%;
}
.testimonial-section {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   width: 100%;
   height: 100%;
}
.testimonial-section .quote p {
   font-size: 20px;
   font-weight: 300;
   line-height: 1.8;
   font-style: italic;
   margin: 0;
}
.quote-icon {
   width: 38px;
   display: block;
   margin-bottom: 30px;
}

.quote-icon{
    font-size: 50px;
    color: #0E4285;
}






/* banner */
.shape {
    height: 100%;
    position: absolute;
    right: 0;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    top: 65px;
}

.z-index {
    z-index: 1;
}

.font-clr {
    color: #0E4285;
}

.power-p{
    text-align: justify;
    font: 14px;
}
/* font-animation */





.banner-bg {
    background-image: url("../images/banner.png");
    background-size: cover;
    width: 1000px;
    height: 680px;
    position: absolute;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    left: 419px;

}

.banner-p {
    font-weight: 400;
    font-size: 23px;
    line-height: 50px;
}

.banner-h1 {
    font-size: 62px;
    line-height: 65px;
    font-weight: 300;
    
  
}


/* .content {

    position: relative;
    bottom: 0;
    animation: content 1s ease-in forwards;
  

    
}

@keyframes content {
    0% {
        bottom: -100vh;
    }

    100% {
        bottom: 0;
    }
} */

/* .more-btn {
    padding: 12px 30px;
    border: 0px;
    color: white;
    background-color: #B79B59;
    text-transform: uppercase;
    transition: all .3s linear;
    animation: btn 1.5s ease-in 1.5s forwards;
}

;

@keyframes more-btn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
} */
.read-more-btn{
    width: 190px;
    height: 43px;
    border: 0px;
    color: white;
    background-color: #B79B59;
    text-decoration: none;

 
 
}
.read-more-btn:hover{
    width: 190px;
    height: 43px;
    border: 0px;
    color: white;
    background-color: #002F6C;
}

.client-b{
    border: 1px solid rgb(230, 230, 230);
    
    height: 145px;
    text-align: center;
    padding: 0;
}
.client-w{
    width: 175px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
}


.more-btn {
    padding: 12px 30px;
    border: 0px;
    color: white;
    background-color: #B79B59;
    text-decoration: none;



  }
  

  
  .more-btn:hover {
    padding: 12px 30px;
    border: 0px;
    color: white;
    background-color: #002F6C;
   
  }

/* second */

.year-mt {
    margin-top: 130px;
}

.own-mt {
    margin-top: 330px;
}

.plus-number {

    text-align: end;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    position: relative;

}

.twenty-shadow {
    margin-left: auto;
}

.twenty-main {
    position: absolute;
    top: 26%;
    right: -12px;
}

.plus-img {

    position: absolute;
    right: 0;
    /* top: 68%; */
    /* margin-bottom: -11px; */
    margin-top: -87px;
    z-index: 9;

}

.border-plus {
    border-top: 3px solid rgb(228 228 228 / 56%);
    margin-top: -14px;
    margin-left: auto;
    width: 165px;
}

.section-h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-style: normal;
    font-weight: 600;
    font-size: 21px;
    line-height: 58px;

}

hr {
    width: 71px;
    height: 2px !important;
    background-color: #b79b59 !important;
    opacity: inherit !important;
}

.chair-h1 {
    font-size: 50px !important;
}

.h2-main-head {
    font-weight: 400;
    font-size: 22px;
    line-height: 44px;
    color: #958F8F;
}

.profile-h1 {
    font-size: 50px !important;
}

.default-p {
    font-weight: 400;
    font-size: 15px;
    line-height: 33px;
}

.year-p {
    font-weight: 300;
    font-size: 42px;
    line-height: 78px;
    margin-top: 20px;
}

/* third */

.slide {
    display: block;
    padding: 15px;
    margin-right: 15px;
    transition: ease all 0.3s;
    overflow: hidden;
}

.cl {
    height: 200px;
    color: #fff;
    width: 400px;
    text-align: center;
    font-size: 126px;
    line-height: 1.6;
    font-weight: bold;
}



/* .slick-active {
    padding: 20px 0;
} */

.slick-dots {
    list-style: none;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
}

.slick-dots li {
    width: 10px;
    color: transparent;
    font-size: 3px;
    margin: 0px 25px;

}

.slick-dots li button {
    padding: 0px 17px;
    color: transparent;
    border-color: transparent;
    background-color: #ddd;
}

.slick-dots li button:focus:not(:focus-visible) {
    background-color: #B79B59;

}

.slick-slide:not(.slick-active) {
    margin: 20px 0;
}

.child {
    width: 100%;
}

.slide:not(.slick-active) {
    cursor: pointer;
}

.pagination {
    text-align: left;
    color: #fff;
    font-family: "Raleway", sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
}

.slider {
    display: block;

    width: 100%;
}

/*.slick-list {*/
/*    overflow: visible !important;*/
/*}*/

.slider-card {}

.line-limit {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}


.testimonial-round{
        border-radius: 90px;
    height: 85px;
    width: 85px;
}

.line-limit2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.line-limit-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}


.img-news{
    position: absolute;
    color: white;
  bottom:0;
  
    z-index: 1;
}


.service-bg {
    background-color: #F0F0F0;
    overflow-x: hidden;

}

.legal-h3 {
    font-weight: 400;
    font-size: 35px;
    line-height: 58px;
}

.shape-div {
    background-color: #0E4285;
    clip-path: polygon(0 25%, 100% 74%, 100% 99%, 0% 100%);
    height: 200px;
}

.div-hover1:hover {
    background-image: url("../images/service.png");
    background-size: cover;
    clip-path: polygon(0 8%, 100% 71%, 100% 99%, 0% 100%);
    height: 200px;
    transition: 0.8s;
    transition-duration: 1s;

}

.div-hover2:hover {
    background-image: url("../images/Litigation.jpg");
    background-size: cover;
    clip-path: polygon(0 8%, 100% 71%, 100% 99%, 0% 100%);
    height: 200px;
    transition: 0.8s;
    transition-duration: 1s;
}

.div-hover3:hover {
    background-image: url("../images/banking.jpg");
    background-size: cover;
    clip-path: polygon(0 8%, 100% 71%, 100% 99%, 0% 100%);
    height: 200px;
    transition: 0.8s;
    transition-duration: 1s;
}

.div-hover4:hover {
    background-image: url("../images/intel.jpg");
    background-size: cover;
    clip-path: polygon(0 8%, 100% 71%, 100% 99%, 0% 100%);
    height: 200px;
    transition: 0.8s;
    transition-duration: 1s;
}

.div-hover5:hover {
    background-image: url("../images/adr.webp");
    background-size: cover;
    clip-path: polygon(0 8%, 100% 71%, 100% 99%, 0% 100%);
    height: 200px;
    transition: 0.8s;
    transition-duration: 1s;
}


.arrow-btn {
    margin-top: 105px;
    margin-left: 37px;
    border: 0px;
    width: 50px;
    height: 50px;
    border-radius: 90px;
    background-color: white;
    color: #0E4285;
    font-size: 18px;
}

.arrow-btn:hover {
    color: #B79B59 !important;
}






.insght-text:hover{
    color: #89764B;
}

/* four */
.news-h2 {
    font-weight: 400;
    font-size: 35px;
    line-height: 58px
}

.insght-text {
    font-weight: 400;
    font-size: 21px;
    line-height: 36px;
}

.insght-p {

    font-size: 13px;

}
.power-align{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.all-insight {
    background-color: black;
    border: 0px;
    padding: 17px 0px;
    width: 100%;
    color: white;
    font-size: 20px;
    transition: all 0.6s;
}
.all-insight:hover {
    color: #fff;
    background-color: #193768;
    background-position: 100%;
    transform: translateX(0.5rem);
  }

  /* test */
  
  /* .carousel-item {
    transition: transform 2.6s ease-in-out;
  }
  
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: opacity 0s 2.6s;
  }
   */

.carousel-item{
    transition: transform 2.6s ease-in-out;
}

/* five */
.dot-bg {
    background-image: url(../images/dot-bg.png);
    background-repeat: no-repeat;
    background-size: cover;

    width: 75%;
    margin: auto;
}

.dot-h6 {
    font-weight: 500;
    font-size: 24px;
    line-height: 46px;
    /* or 192% */

    text-align: center;
    letter-spacing: 0.02em;
}


/* client-logo */

.logo-slid {
    overflow-x: hidden;
}

/* Slider */



.our-h1 {
    font-size: 50px !important;
}


/* six */

.cover {
    background-image: url("../images/video-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    padding-bottom: 15%;

}
.play-img:hover{
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}
#rotate {
    margin: 50px auto 0;
    width: 500px;
  }
  .play-img{
    -webkit-transition-duration: 1s;
    -moz-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
  }
.cover video {
    opacity: 0;
    width: 100%;
    transition: 1s;
    position: absolute;
    z-index: -1;
}

.border-vid {
    border-top: 2px solid white;
    width: 105px;
    margin: auto;
    /* padding-top: 5px; */
    margin-top: 40px;

}

.brand-vid-p {
    font-size: 18px;
    color: white;
    padding-top: 18px;
}

.vid-h4 {
    font-weight: 300;
    font-size: 42px;
    line-height: 63px;
    margin-top: 11px;
    text-align: center;
    letter-spacing: -0.01em;
}

.brand-clr {
    color: #002F6C;
}

/* seven */

.phone-btn {
    height: 50px;
    width: 50px;
    border-radius: 90px;
    border: 0px;
    background-color: #b79b59;
    color: white;
    transition: all .3s linear; 
}
.phone-btn:hover {
    height: 60px;
    width: 60px;
    border-radius: 90px;
    border: 0px;
    background-color: #002F6C;
    color: white;
}

.border-top-footer {
    border-top: 3px solid rgb(224, 224, 224);
}

/* footer */
.footer-h4 {
    font-weight: 300;
    font-size: 28px;
    line-height: 36px;
    color: #646464;
    padding-bottom: 28px;

}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    /* color: #495057; */
    /* background-color: #fff; */
    /* border-color: #dee2e6 #dee2e6 #fff; */
    width: 140px !important;
    height: 43px !important;
    background: #b79b59 !important;
    color: white !important;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
    color: #b79b59 !important;
    width: 140px !important;
    height: 43px !important;
}

.nav-tabs .nav-item {
    border: 1px solid #dddbdb;
    margin-right: 19px;
}

.nav-tabs {
    border-bottom: inherit !important;
}

.own-ps-1 {
    padding-left: 90px !important;
}

.own-ps-2 {
    padding-left: 125px !important;
}

/* responsive */

/* top-btn */
#button {
    display: inline-block;
    background-color: #002F6C;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#button::after {
    content: "\f0de";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    font-size: 2em;

    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #89764B;
}

#button:active {
    background-color: #89764B;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

.fixed-top.scrolled {
    background-color: #fff !important;
    transition: background-color 200ms linear;
}

.banner-pt {
    padding-top: 8rem !important;
}

.banner-pb {
    padding-bottom: 8rem !important;
}

.banner-home-p {
    padding-bottom: 8rem !important;
    padding-top: 8rem !important;


}

.banner-about-pb {
    padding-bottom: 114px !important;
}

.banner-about-pt {
    padding-top: 110px !important;
}

.banner-border {
    width: 50%;
    border-bottom: 1px solid rgba(193, 193, 193, 0.492);
}

.banner-inner-pt {
    padding-top: 9rem !important;
}

.banner-inner-pb {
    padding-bottom: 8rem !important;
}

.banner-mem-pt {
    padding-top: 4rem;
}

.banner-mem-pb {
    padding-bottom: 4rem;
}

.slick-track {
    display: flex !important;
    align-items: center !important;
    opacity: 1;
    width: 2160px;
    transform: translate3d(-40, 0px, 0px) !important;
}


/* about us */

.team-btn {
    border: 1px solid #002F6C;
    padding: 1;
    color: #002F6C;
    padding: 12px 63px;
    background: transparent;
    transition: all .3s linear; 
}

.dropdown-item {
    padding: 10px 25px;
}

.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #89764B;
}

.dropdown-menu {
    border: none !important;
}

.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: -27px;
    margin-top: 0.125rem;
    top: 28px;
}

.about-pt {
    padding-top: 110px;
}

.accordion-h5 {
    font-size: 25px;
}

.about-sec-p {
    padding: 92px 80px;
}

.team-btn:hover {
    border: 1px solid #ffffff;
    padding: 1;
    color: #ffffff;
    padding: 12px 63px;
    background: #002F6C;
}

.shadow-bg {
    background-image: url("../images/about-vector.png");
}

.about-shadow-bg {
    position: absolute;
    top: 66px;
    right: 0;
    height: 100%;
    z-index: -1;
}

.bg-second-about {
    background-color: #B79B59;
    width: 100%;
    margin-top: 140px;
    z-index: 2;
    position: relative;
}

.bg-second-contact {
    background-color: transparent;
    width: 100%;
    margin-top: 145px;
    z-index: 2;
    position: relative;
}
.bg-second-ex{
    background-color: transparent;
    width: 100%;
    margin-top: 63px;
    z-index: 2;
    position: relative; 
}

.bg-second-team {
    background-color: #B79B59;
    width: 100%;
    margin-top: 181px;
    z-index: 2;
    position: relative;
}

.about-h2 {
    font-weight: 400;
    font-size: 32px;
    line-height: 52px;
}

.about-p {
    font-weight: 400;
    font-size: 16px;
    line-height: 34px;
}

.read-btn {
    padding: 10px 40px;
    border: 0px;
    background-color: white;
}

.year-font {
    font-weight: 600;
    font-size: 119px;
    color: #E6E6E6;
}

.accordion-button::after {

    flex-shrink: 0;
    width: 5.25rem;
    height: 5.25rem;
    margin-left: auto;
    font-size: 44px;
    content: "+" !important;
    background-image: inherit !important;
    background-color: #0E4285;
    text-align: center;
    padding-top: 13px;
    border-radius: 90px;
    color: white !important;


}

.brighten img {
    -webkit-filter: brightness(82%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
    }
    
    .brighten img:hover {
    -webkit-filter: brightness(100%);
    }

    .brighten:hover + .team-name {
      color: red !important;
        }


.accordion-button:not(.collapsed)::after {
    content: "-" !important;
    background-image: inherit;
    background-color: white;
    text-align: center;
    padding-top: 13px;
    border-radius: 90px;
    color: #0E4285 !important;
}

.accordion-item {
    background-color: inherit !important;
    border: 0;
    border-bottom: 3px solid rgb(224, 224, 224);
    background-color: #F0F0F0 !important;
}

h2 {
    padding: 0px !important;
}

.accordion-button:not(.collapsed) {
    color: inherit !important;
    background-color: inherit !important;
    box-shadow: inherit !important;
}

.accordion-btn-font {
    font-size: 40px !important;
}

.accordion-button:focus {
    z-index: 3;
    border-color: none;
    outline: 0;
    box-shadow: inherit;
}


/* timeline */


.timeline-png {
    border-radius: 287px 287px 0px 0px;
    width: 70%;
}

.twelv-png {
    width: 35%;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    /* padding: 31px; */
    border-radius: 91px;
}

.carousel-control-next {
    left: 70px;
}



.carousel-control-next,
.carousel-control-prev {
    top: 444px;
    background-color: #0E4285 !important;
    border-radius: 90px;
    width: 4%;
    opacity: 1 !important;
    height: 10%;
}
.carousel-control-next:hover{
    background-color: #B79B59 !important;

}
.carousel-control-prev:hover{
    background-color: #B79B59 !important;

}

.carousel-control-prev-icon {
    background-image: url("../images/left.png") !important;
    background-repeat: no-repeat;
}

.carousel-control-next-icon {
    background-image: url("../images/right.png") !important;
    background-repeat: no-repeat;


}

.footer-links:hover {
    color: #002F6C !important;
    font-weight: bold;
}

/* page3 */

.read-more {
    padding: 12px 45px;
    border: 0px;
    color: white;
    background-color: #002F6C;
}

.section3-bg {
    background-color: #D5DCEC;
}


.section3-h2 {
    font-weight: 400;
    font-size: 35px;
    line-height: 50px;
    color: #0E4285;
}

.talk-h {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.04em;
    color: #0E4285;

}

.sec-3-bg-img {
    background-image: url("../images/duabi.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.fixed-bg-h {
    font-weight: 400;
    font-size: 27px;
    line-height: 48px;
    letter-spacing: 0.02em;
}

.text-justify{
    text-align:justify;
}

/* ourteam */
.team-h2 {
    font-weight: 400;
    font-size: 40px;
    color: #0E4285;
}

.team-bg {
    background-color: #F9F9F9;

}

.w-member {
    width: 85%;
}

.padding-col {
    padding: 0px 30px;
}

.team-bg-img {
    background-image: url("../images/team.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* team */
.social-btn {
    border: none;
    padding: 10px 25px;
    background-color: #002F6C;
    color: white;
    border-radius: 7px;
}

.certification-bg {
    background-color: #002F6C;
    padding: 20px 30px;
}

.explanation-bg {
    background-color: #F9F9F9;
    width: 100%;
    padding: 70px 30px;
}

.main-border {
    border-left: 2px solid #dee2e6;
}

.sub-border {
    border-left: 4px solid #002F6C;
    padding: 5px 0px;

}

.philosophy-bg {
    background-color: #D5DCEC;

}

.Specialised-bg {
    background-color: #B79B59;
    padding: 20px 30px;
}

.sub-border-sp {
    border-left: 4px solid #B79B59;
    padding: 5px 0px;

}

.enquery-bt {
    border-top: 3px solid #F0F0F0;
}

.bef:before {
    float: left;
    display: block;
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    /* background-color: #002f6c;
    height: 17px;
    width: 6px; */
    color: #002f6c;
    margin: 0 30px 0 0;
    font-size: 20px;
    /* font-size: 25px;
    margin-left: 13px;
    margin-top: 11px; */
    
}
/* li i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #b89b5e;
    border-radius: 100%;
    background-color: #fff;
    border: 2px solid #e1dfdc;
    position: absolute;
    left: 0;
    top: 12;
    padding: 10px;
    font-size: 17px;
    
} */


.bullet-line{
    border-left: 6px solid #B79B59;
}

.ser-cor{

    object-fit: cover;
}

.social-icons{
    color: #d3aa64;
    font-size: 21px;
    padding-right: 8px;
}
/* CONTACUS */

.call-icon {
    padding: 18px 12px;
    background: #B79B59;
    color: white;
    font-size: 31px;
}
.call-icon:hover {
    padding: 18px 12px;
    background: #002F6C;
    color: white;
    font-size: 31px;
}
.contact-num {
    font-size: 24px !important;
}

.bg-col-5 {
    background-color: #b79b59;
}

.contact-input {
    border: none;
    border-bottom: 1px solid green;
    padding: 14px 0px;
}

.col-bg {
    background-color: #b79b59;
}

.input-50 {
    width: 45%;
}

.send-btn {
    text-align: center;
    width: 100%;
    background-color: #002F6C;
    color: white;
    border: 0;
    padding: 20px;
}

.num-border {
    border-left: 3px solid #002F6C;
    padding: 1px 0px;

}

.tab {
    overflow: hidden;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: #ffffff;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px 30px;
    transition: 0.3s;
    font-size: 17px;
    margin-left: 11px;
}
.cursor{
    cursor: pointer;
}
/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #002F6C;
    color: white;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
    margin-top: 30px;
}

.tab-show {
    display: block;
}


/* expertise */
.col-bg-exp {
    background-color: #F9F9F9;
}

.expert-h1 {
    font-size: 50px !important;
}

/* finance */
.banner-finance-pb {
    padding-bottom: 7rem;
}

.finance-bg {
    background-color: #F9F9F9;
}

.fin-btn {
    color: #b79b59;
}

.service-imgs {
    height: 250px;
    object-fit: cover;
}

.service-h {
    font-size: 50px !important;
}

.banner-ser-pb {
    padding-bottom: 5rem !important;
}

.banner-ser-pt {
    padding-top: 12rem !important;
}

.ser-h {
   
    object-fit: cover;
}
.ser-h-i {

    object-fit: cover;
}
.ser-h-b {
 
    object-fit: cover;
}
.ser-h-adr{
   
    object-fit: cover;
}

.toggle-text {
    display: none;
  }


/* clients */
.col-bg-client {
    background-color: white;
}

.client-shadow-bg {

    position: absolute;
    top: 66px;
    right: 0;
    height: auto;
    z-index: -1;

}

.banner-client-pt {
    padding-top: 12rem;

}

.banner-client-pb {
    padding-bottom: 12rem;

}

.client-img {
    width: 200px;
    filter: grayscale(100%);
}

.client-img:hover {
    width: 200px;
    filter: grayscale(0%);
}

.custom-slick-arrow {
    top: 445px;
    background-color: #0E4285 !important;
    border-radius: 90px;
    width: 4%;
    opacity: 1 !important;
    height: 10%;

    background-repeat: no-repeat;
}

.custom-slick-arrow i {
    background-image: url("../images/left.png") !important;
}

.contact-h1 {
    font-size: 50px !important;
}

.banner-con-pb {
    padding-bottom: 6rem !important;
}

.banner-con-pt {
    padding-top: 11rem !important;
}

.img-about-w {
    width: 65% !important;
}

.img-adr-w {
    width: 55%;
}

.img-chair-w {
    width: 55%;
}

.img-client-w {
    width: 60%;
}

.img-w-contact {
    width: 50%;
}

.img-cor-w {
    width: 55%;
}

.img-exp-w {
    width: 57%;
}

.img-fin-w {
    width: 55%;
}

.img-55 {
    width: 55%;
}

.img-60 {
    width: 60%;
}

.cont-p {
    padding: 50px;
}

.bef {
    font-size: 15px;
}

.news-h1 {
    font-size: 50px;
}
.modal-dialog {
    max-width: 1045px;
    margin: 1.75rem auto;
}
/* counting */
.gredient {
    font-size: 15vw;

    font-family: "Poppins", sans-serif;
    
    text-align: end;
    font-weight: 600;
z-index: 3;

background: -webkit-linear-gradient(#89764B, #B79B594D);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;


}




.text-outline {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: currentColor;
    -webkit-text-stroke-width: 0.0012em;
    text-align: end;
    font-weight: 600;
    font-size: 15vw !important;
    font-family: "Poppins", sans-serif;
    color: #b7b6b6;
    right: 5px;
    top: -7px;
    margin-top: 3rem;
    font-size: 6rem;
    color: #ffd9e2;
    text-shadow: 0 0 0 transparent, 0 0 0px #ffffff, 0 0 0px #eeeae1, 0 0 0px #eedaaa, 0 0 4px #E3D5B4, 0 0 4px #eed7a0, 0 0 10px #eddebc, 0 0 11px #E4D7BA, 0 0 8px #e9dbb9;
    /* animation: blink 4s infinite alternate; */
    animation: glowing 5000ms infinite;
    
  }
  @keyframes glowing {
    0% { text-shadow: 0 0 -5px #d8c5a4; }
    40% { text-shadow: 0 0 10px #e0d3b5; }
    60% { text-shadow: 0 0 10px #d6c4a5; }
    100% { text-shadow: 0 0 -5px #e6d7b4; }
  }
 




.posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.posts__item {
    display: flex;
    flex-direction: column;
    flex-basis: 32%;
    background-color: #fff;
    margin-bottom: 22px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    flex-wrap: wrap;
}

.posts__item--main {
    flex-basis: 66%;
}

.posts__item--main:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
.news-overlay::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
.team-overlay:hover{
    -webkit-filter: brightness(82%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease; 
}

.posts__item--main .posts__image {
    display: flex;
    flex-grow: 1;
}

.posts__item--main .posts__information {
    position: absolute;
    bottom: 35px;
    left: 50px;
    padding: 0 25px 0 0;
    z-index: 1;
}

.posts__item--main .posts__title a {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0.75px;
    color: #fff;
}

.posts__image>img {
    display: block;
    width: 100%;
}

.posts__information {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 25px;
    flex-grow: 1;
}

.posts__date {
    font-size: 13px;
  
    letter-spacing: 0.325px;
    color: #d7d0d0;
  
    font-weight: 600;
 
}

.posts__title {
    margin-top: 7px;
    margin-bottom: auto;
}

.posts__title a {
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
  
    letter-spacing: 0.55px;
}

.posts__title a:hover {
    text-decoration: underline;
}

.posts__author img {
    border-radius: 50px;
    width: 60px;
}

.news-man {
    color: #B79B59;
}

/*banner-slide*/

#banner-slide{
    display:none;
}

/*#banner-slide.carousel-control-next-icon,*/
/*.carousel-control-prev-icon {*/
/*    display: inline-block;*/
/*    width: 1rem;*/
/*    height: 1rem;*/
/*    background-repeat: no-repeat;*/
/*    background-position: 50%;*/
/*    background-size: 100% 100%;*/
    /* padding: 31px; */
/*        border-radius: inherit !important;*/
/*}*/

/*#banner-slide.carousel-control-next {*/
/*    left: 70px;*/
/*}*/



/*#banner-slide.carousel-control-next,*/
/*.carousel-control-prev {*/
/*    top: 444px;*/
    /*background-color: #006eff !important;*/


/*}*/
/*#banner-slide .carousel-control-next:hover{*/
/*    background-color: #B79B59 !important;*/

/*}*/
/*#banner-slide .carousel-control-prev:hover{*/
/*    background-color: #B79B59 !important;*/

/*}*/

/*#banner-slide .carousel-control-prev-icon {*/
/*    background-image: url("../images/left.png") !important;*/
/*    background-repeat: no-repeat;*/
/*}*/

/*#banner-slide .carousel-control-next-icon {*/
/*    background-image: url("../images/right.png") !important;*/
/*    background-repeat: no-repeat;*/


/*}*/



#zoomIn img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
#zoomIn:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

.time-p {
    font-size: 12px;
}
.copyright{
    font-size:9px;
}
.copyright2{
    font-size:11px;
}
/* test */


.banner-news-p {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
}


@media screen and (max-width: 992px) {
    .posts__information {
        padding: 10px 15px 15px 15px;
    }

    .posts__date {
        font-size: 12px;
    }
.res-w{
    width: 100%;
}
.about-sec-p {
    padding: 20px 20px;
}
.client-shadow-bg{
    display: none;
}
    .posts__title a {
        font-size: 16px;
        line-height: 24px;
    }

    .posts__item--main .posts__information .post-title a {
        font-size: 20px;
        line-height: 26px;
    }
}

@media screen and (max-width: 768px) {
    .posts__item {
        flex-basis: 49%;
    }

    .posts__item--main {
        flex-basis: 100%;
        justify-content: center;
    }

    .posts__item--main .posts__image {
        display: block;
    }

    .posts__item--main .posts__information {
        width: 100%;
        bottom: auto;
        left: auto;
        align-items: center;
        text-align: center;
        padding: 0;
    }
}

@media screen and (max-width: 480px) {
    .posts__item {
        flex-basis: 100%;
    }
}

@media (min-width: 769px),
(max-width: 1000px) {
    .navbar-light .navbar-nav .nav-link.active {
        padding: 0px 15px;
        
     

    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        display: flex;
        justify-content: center;
        width: 78%;
    }

    .card-height {
        height: 187px;
    }

    .timeline-png {
        width: 80%;
    }

    .carousel-control-next,
    .carousel-control-prev {
        height: 9%;
    }

    .carousel-control-next {
        left: 70px;
    }

    .num-h5 {
        font-size: 19px;
    }


}


.mob-plus{
    display: none;
}
.bounce2{
    display: block;
}
  



@media (max-width: 768px) {
    .mob-plus{
        display: block;
    }
    .bounce2{
        display: none;
    }
    .copyright {
        font-size: 12px;
        text-align: center;
    }

    br {
        display: none;
    }

    .res-logo {
        width: 75%;
    }

    .logo-a {
        width: 50% !important;
    }

    .navbar-toggler:focus {
        box-shadow: inherit;
    }

    .navbar-light .navbar-toggler {
        color: rgba(0, 0, 0, .55);
        border-color: #b79b59;
    }

    .navbar-nav {
        padding-top: 25px;
    }

    .navbar-toggler .collapsed .navbar-toggler-icon {
        background-image: url("../images/svg/down.svg") !important;

    }

    .res-nav-bg {
        background-color: white;
    }

    .nav-item-res {
        padding-bottom: 15px;
        padding-top: 15px;
        border-bottom: 1px solid #e8e8e8;
    }

    .res-nav-form {
        padding-top: 28px;
        padding-bottom: 40px;
    }

    .res-nav-btn {
        border: 1px solid #0E4285;
        color: #0E4285;
        padding: 1;
        padding: 13px 35px;
        font-size: 14px;
        width: 100%;
    }

    .res-nav-ul {
        width: 100% !important;
        text-align: center;
    }
    .about-shadow-bg {
        display: none;
    }

    .shape {
        width: 100%;
        position: absolute;
        clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        left: 0px;
        opacity: 0.5;
    }

    .res-banner-p {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .banner-h1 {
        font-weight: 300;
        font-size: 45px;
        line-height: 51px;
    }

    .res-p {
        font-size: 14px;
        text-align: justify;
    }

    .default-p {
        font-weight: 400;
        font-size: 14px;
        line-height: 26px;
        text-align: justify;
    }

    .team-btn {
        background-color: #002F6C;
        color: white;
        width: 100%;
    }

    .read-btn {
        width: 100%;
    }

    .accordion-button:not(.collapsed)::after {
        padding-top: 8px;
    }

    .accordion-button::after {
        width: 4.25rem;
        height: 4.25rem;
        padding-top: 9px;
    }

    .accordion-btn-font {
        font-size: 30px !important;
    }

    .contact-h1 {
        padding-top: 80px;
    }



    .own-mt {
        margin-top: 45px;
    }

    .team-bg-img {
        background-position: bottom;
    }


    .counting {
        padding-top: 0px;
    }

    .count-plus {
        margin-top: 145px;
    }

    .dot-bg {
        width: 100%;
    }

    .vid-h4 {
        font-size: 26px;
        line-height: 35px;
    }

    .own-ps-1 {
        padding-left: 0px !important;
        text-align: center;
        padding-top: 35px;
    }

    .own-ps-2 {
        padding-left: 0px !important;
        text-align: center;
        padding-top: 35px;
    }

    .res-center {
        margin: auto !important;
    }

    .nav {
        justify-content: center;
    }

    .tab-content {
        text-align: center;
    }

    .about-h2 {
        font-size: 24px;
        line-height: 36px;
    }

    .about-p {
        font-weight: 400;
        font-size: 13px;
        line-height: 29px;
        text-align: justify;
    }

    .section-h2 {
        font-size: 28px;
    }

    .h2-main-head {

        font-size: 21px;
        line-height: 32px;

    }

    .legal-h3 {
        font-size: 33px;

    }

    .carousel-control-next,
    .carousel-control-prev {
        top: 415px;
        background-color: #0E4285 !important;
        border-radius: 90px;
        width: 17%;
        height: 7%;
        opacity: 1 !important;
    }

    .carousel-control-next {
        left: 80px;
    }

    .banner-pt {
        padding-top: 3rem !important;
    }

    .banner-pb {
        padding-bottom: 3rem !important;
    }

    .banner-home-p {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .banner-inner-pt {
        padding-top: 2rem !important;
    }

    .banner-inner-pb {
        padding-bottom: 2rem !important;
    }

    .banner-mem-pt {
        padding-top: 2rem;
    }

    .banner-about-pt {
        padding-top: 1rem !important;
    }

    .banner-about-pb {
        padding-bottom: 0rem !important;
    }

    .banner-mem-pb {
        padding-bottom: 2rem;
    }

    .bg-second-team {
        margin-top: 101px;
    }

    .news-h2 {
        font-size: 33px;
    }

    .dropdown-toggle {
        padding-bottom: 15px !important;
        padding-top: 15px !important;
        border-bottom: 1px solid rgb(232, 232, 232);
    }

    .banner-client-pb {
        padding-bottom: 0px;
    }

    .banner-client-pt {
        padding-top: 3rem;
    }

    .col-md-2 {
        width: 50% !important;
        text-align: center;
    }

    .bg-second-contact {
        margin-top: 0px;

    }

    .year-mt {
        margin-top: 70px;
    }

    .remove-p {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        font-size: 14px;
    }

    .p-none {
        padding: 0px !important;
    }


    .res-img-center {
        text-align: center !important;
        margin-top: 130px !important;
    }

    .bg-second-about {
        margin-top: 100px;
    }

    .twenty-shadow {
        width: 50%;
        position: relative;
        margin: auto;
        text-align: end;
    }

    .twenty-main {
        position: absolute;
        top: 8%;
        right: 91px;
        width: 50%;
    }

    .plus-img {
        position: absolute;
        right: 73px;
        top: 53%;
        width: 10%;
    }

    .year-p {
        font-size: 37px;
        margin-top: -45px;
    }

    .more-btn {

        width: 100%;
        margin-top: 21px;
    }

    .navbar-expand-lg .navbar-nav {
        display: inherit !important;
        flex-direction: column;
    }

    .slick-track {
        left: 15px !important;
    }

    .slider-card {
        overflow-x: hidden;
    }

    .res-width {
        width: 100% !important;
    }

    .flex-none {
        flex-wrap: wrap;
        width: 100%;
    }

    .call-flex {
        padding-top: 12px;
        align-items: center;
        justify-content: center;
    }

    .contact-res {
        flex-direction: column;
    }

    .res-input {
        width: 100%;
        margin-top: 20px;
    }

    .c {
        padding-top: 0px !important;
    }

    .pb-none {
        padding-bottom: 0px !important;
    }

    .team-h2 {
        font-size: 28px;
    }

    .tab button {
        margin-left: 0px;
    }

    .finance-h1 {
        padding-top: 80px;
    }

    .timeline-png {
        width: 100%;
    }

    .fixed-bg-h {
        font-size: 27px;
        line-height: 40px;
    }

    .pt-none {
        padding-top: 0px !important;
    }

    .res-copy {
        font-size: 13px;
    }

    .slick-dots {
        right: 60px !important;
    }

    .mt-none {
        margin-top: none !important;
    }

    .img-about-w {
        width: 100% !important;
    }

    .img-adr-w {
        width: 100%;
    }

    .img-chair-w {
        width: 100%;
    }

    .img-client-w {
        width: 100%;
    }

    .img-w-contact {
        width: 100%;
    }

    .img-cor-w {
        width: 100%;
    }

    .img-exp-w {
        width: 100%;
    }

    .img-fin-w {
        width: 100%;
    }

    .img-55 {
        width: 100%;
    }

    .img-60 {
        width: 100%;
    }

    .banner-con-pt {
        padding-top: 3rem !important;
    }

    .banner-con-pb {
        padding-bottom: 3rem !important;
    }

    .res-align {
        text-align: center !important;
    }

    .dropdown-menu {
        text-align: center !important;
    }

    .nav-tabs .nav-item {
        margin-top: 10px;
    }

}

@media only screen and (min-device-width : 600px) and (max-device-width : 1024px) {
    .call-btn {
        padding: 12px 10px !important;
    }

    .navbar-light .navbar-nav .nav-link.active {
        padding: 0px 7px;
    }

    .twenty-main {
        position: absolute;
        /* top: 8%; */
        right: 91px;
        width: 75%;
        top: inherit;
    }

    .year-p {
        font-size: 53px;
        margin-top: -244px;
        text-align: left !important;
    }


}