@font-face { font-family: gibson-regular; src: url('../fonts/NotoSans-Medium.ttf'); } 
@font-face { font-family: gibson-medium; src: url('../fonts/NotoSans-SemiBold.ttf'); } 
@font-face { font-family: gibson-semibold; src: url('../fonts/NotoSans-Bold.ttf'); } 
@font-face { font-family: effra_xbd; src: url('../fonts/effra_xbd.ttf'); } 

:root {
    --text-black: #000;
    --text-white: #fff;
    --theme-black: #202945;
    --theme-black-75: #202A44BF;
    --yellow-color: #F6D44D;
    --blue-color: #4698CA;
    --light-color: #7E8087;
    --light-color1: #D9D9D9;

    --regular-font: gibson-regular;
    --medium-font: gibson-medium;
    --semibold-font: gibson-semibold;
    --effra-bold-font: effra_xbd;
}


html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: var(--regular-font);
    width: 100%;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    background-color: var(--text-white);
    color: var(--theme-black);
}
.nopadding{
    padding: 0px !important;
}
.sec-pad{
    padding: 110px 0px; 
}
.sec-pad-small{
    padding: 90px 0px; 
}
a, a:hover{
    color: inherit;
    text-decoration: none;
}
.hover-underline:hover{
    text-decoration: underline;
}
p{
    font-size: 24px;
    line-height: 40px;
}
.ft-p{
    font-size: 24px;
    line-height: 40px;
}
.ft-25{
    font-size: 23px;
    line-height: 40px;
}
.text-white{
    color: var(--text-white);
}
.semibold{
    font-family: var(--semibold-font);
}
.medium{
    font-family: var(--medium-font);
}
.dark-bg{
    background-color: var(--theme-black)!important;
}
.grey-bg{
    background-color: var(--light-color1);
}
.yellow-bg{
    background-color: var(--yellow-color)!important;
}
.blue-bg{
    background-color: var(--blue-color)!important;
}
.blue-text{
    color: var(--blue-color)!important;
}
.light-color{
    color: var(--light-color)!important;
}

/*header*/
.header{
    width: 100%;
    background: var(--text-white);
    padding: 40px 0px;
    position: relative;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 999;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
}
.sticky-bar{
    padding: 10px 0px!important;
    position: fixed;
    box-shadow: 0px 5px 15px 0px #21343014;
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}
.res-header{
    display: none;
}
.navbar{
    padding: 0px;
}
.navbar-light .navbar-brand {
    align-items: center;
    display: flex;
    padding: 0px;
}
.navbar-light .navbar-nav .nav-link {
    color: var(--theme-black);
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 10px;
    letter-spacing: 1px;
    position: relative;
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-item.active .nav-link , .navbar-light .navbar-nav .nav-item .nav-link.active , .navbar-light .navbar-nav .nav-link:focus {
    color: var(--blue-color);
}
@media (min-width: 1200px){
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
        margin-right: 18px;
        margin-left: 18px;
    }
}
.navbar-toggler:focus{
    box-shadow: none;
    outline: 0;
}
.navbar-light .navbar-toggler {
    color: var(--theme-black);
    border: none;
}
#navbar-hamburger svg{
    color: var(--theme-black);
}
#navbar-close svg{
    color: var(--text-white);
}


/*hero-sec*/
.hero-bg{
    width: 100%;
    height: calc(100vh - 189px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-carousel.owl-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
}
.hero-carousel.owl-carousel button.owl-dot span {
    height: 7px;
    width: 7px;
    margin: 0px 3px;
    display: block;
    border-radius: 50%;
    background-color: var(--text-white);
    opacity: 1;
    transition: all ease .5s;
}
.hero-carousel.owl-carousel button.owl-dot.active span {
    width: 50px;
    height: 1px;
    border-radius: 0px;
}
.hero-carousel.owl-carousel .owl-nav button i {
    height: 55px;
    width: 55px;
    font-size: 40px;
    background-color: var(--theme-black-75);
    padding: 10px 10px 13px;
    opacity: 0;
    transition: all ease .5s;
}
.hero-carousel.owl-carousel:hover .owl-nav button i {
    opacity: 1;
}

/*content area*/

.title{
    font-size: 36px;
    line-height: 60px;
    font-family: var(--effra-bold-font);
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 3px;
}
.title::after{
    content: '';
    display: block;
    height: 4px;
    width: 86px;
    background-color: var(--blue-color);
    border-radius: 5px;
}
.text-center.title::after{
    margin: auto;
}
.title.yellow-line::after{
    background-color: var(--yellow-color);
}
.title.black-line::after{
    background-color: var(--theme-black);
}
.title.no-title-line::after{
    display: none;
}
.inline-title-line{
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.inline-title-line::after{
    width: 100%;
    display: inline-block;
    margin-left: 25px;
}
.theme-btn{
    display: inline-flex;
    align-items: center;
    font-size: 23px;
    line-height: 43px;
    font-family: var(--medium-font);
    color: var(--theme-black)!important;
    text-transform: uppercase;
    padding: 3px 6px 2px 6px;
    border-radius: 50px;
    letter-spacing: 3px;
    transition: all ease .5s;
    box-shadow: none!important;
    outline: 0!important;
}
.theme-btn:hover{
    background-color: var(--yellow-color);
    padding: 3px 20px 2px 20px;
}
.theme-btn.transprent-btn, .theme-btn.transprent-btn:hover{
    background-color: transparent!important;
}
.border-btn{
    border: 1px solid transparent;
}
.theme-btn.border-btn:hover{
    border-color: var(--theme-black);
}
.white-border-btn{
    color: var(--text-white)!important;
    background-color: transparent!important;
    border: 1px solid transparent;
}
.theme-btn.white-border-btn:hover{
    border-color: var(--text-white);
}
.white-btn{
    color: var(--text-white)!important;
}
.white-btn .btn-arrow::before{
    background-color: var(--text-white);
}
.btn-arrow{
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-right: 15px;
}
.btn-arrow::before{
    content: '';
    height: 2px;
    width: 0px;
    background-color: var(--theme-black);
    display: inline-block;
    margin-right: -6px;
    transition: all ease .5s;
}
.theme-btn:hover .btn-arrow::before{
    width: 30px;
}
.project-box-div{
    width: 100%;
    height: 480px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}
.project-box-img{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.project-box-hover{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--theme-black-75);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 35px 45px;
    opacity: 0;
    transition: all ease .5s;
}
.project-box-div:hover .project-box-hover{
    opacity: 1;
}
.inner-title{
    font-size: 45px;
    line-height: 40px;
    font-family: var(--effra-bold-font);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.relative-9{
    position: relative;
    z-index: 9;
}
.service-img{
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0px;
    left: 0px;
}
.service-img.service-right-img{
    left: auto;
    right: 0px;
}
.right-text-area{
    padding-left: 80px;
}
.left-text-area{
    padding-right: 80px;
}
.sec-bg{
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important;
    margin: 0;
    transition: all 0.3s ease-in-out;
}
.owl-nav button i {
    height: 40px;
    width: 40px;
    background-color: transparent;
    border-radius: 50%;
    font-size: 32px;
    position: relative;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-nav button:hover i {
    color: var(--yellow-color);
}
.owl-nav button.owl-prev {
    left: 40px;
}
.owl-nav button.owl-next {
    right: 40px;
}
.project-carousel.owl-carousel .owl-stage-outer {
  overflow: unset;
}
.project-carousel .owl-nav{
    text-align: right;
    margin-top: 1rem;
}
.project-carousel .owl-nav button {
    position: relative;
    top: auto;
    right: 0px!important;
    left: 0px!important;
    transform: initial; 
}



/*footer*/
.footer-title{
    font-size: 20px;
    line-height: 35px;
    font-family: var(--medium-font);
    text-transform: uppercase;
}
.footer p{
    font-size: 16px;
    line-height: 18px;
}
.footer-line{
    padding: 40px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-line p{
    width: 100%;
    margin-bottom: 0px;
}
.kru-icon{
    margin-top: -5px;
}
.footer-border{
    border-right: 3px solid var(--blue-color);
}
.footer-logo-icon{
    position: absolute;
    top: -100px;
    left: 8%;
    max-width: 200px;
}
.footer a{
    transition: all ease .5s;
}
.footer a:hover{
    color: var(--blue-color);
}
.footer-hr{
    background-color: var(--text-white);
    opacity: 1;
    margin-bottom: 0px!important;
}



/*inner pages*/

.title.hero-title{
    font-size: 50px;
    line-height: 85px;
}
.title.regular-title{
    font-family: var(--semibold-font);
    text-transform: capitalize;
    letter-spacing: 0px;
}
.text-transform-initial{
    text-transform: initial!important;
}
.show-dark-btn{
    padding: 3px 20px 2px 20px;
    border: 1px solid var(--theme-black);
}
.theme-btn.show-dark-btn:hover{
    padding: 3px 20px 2px 20px;
    background-color: var(--theme-black);
    color: var(--yellow-color)!important;
}
.service-sec-min-height{
    min-height: 550px;
    display: flex;
    align-items: center;
}
.career-line-box{
    padding: 40px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--light-color1);
}
.career-line-box:last-child{
    border-bottom: none;
}
.career-line-box p{
    margin-bottom: 0px;
}
.yellow-link, .blue-link{
    transition: all ease .5s;
}
.blue-link:hover{
    color: var(--blue-color);
}
.yellow-link:hover{
    color: var(--yellow-color);
}
.career-link-icon{
    padding-left: 15px;
}
.career-back-link{
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
hr.career-back-link-hr{
    height: 3px!important;
    background-color: var(--light-color1);
    opacity: 1;
    margin-bottom: 35px;
}
.back-arrow-icon{
    display: inline-block;
    transform: rotate(180deg);
    margin-right: 15px;
}
.project-top-div-height{
    padding-bottom: 350px!important;
}
.project-top-div-margin{
    margin-top: -300px!important;
}
.inner-project-box-div{
    margin-bottom: 30px;
}
.inner-project-box-div .title{
    line-height: 45px;
    margin-top: 20px;
}
.inner-project-box-hover{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--theme-black-75);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    opacity: 0;
    transition: all ease .5s;
}
.project-box-div:hover .inner-project-box-hover{
    opacity: 1;
}
.inner-project-box-hover .theme-btn.transprent-btn{
    border: 2px solid #FFFFFF;
    border-radius: 13px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.project-pagination-link-div{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-top: 3px solid var(--theme-black);
    padding-top: 30px;
    margin-top: 50px;
}
.project-pagination-link{
    display: flex;
    align-items: center;
    letter-spacing: 3px;
}
.about-grey-overlay{
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.about-grey-overlay::before{
    content: '';
    background-color: var(--theme-black-75);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: .5;
}
.moretext{
    display: none;
}
.moreless-button{
    display: inline-block;
    font-size: 30px;
    line-height: 30px;
    padding: 5px 0px;
}
.moreless-button .fa-angle-up{
    display: none;
}
.moreless-button .fa-angle-down{
    display: block;
}
.moreless-button.less-btn .fa-angle-up{
    display: block;
}
.moreless-button.less-btn .fa-angle-down{
    display: none;
}
.history-img{
    display: inline-block;
    width: 100%;
    max-width: 210px;
    height: 270px;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    border-radius: 30px;
    margin-bottom: 15px;
}
.team-sec{
    padding-top: 200px;
    margin-top: -200px;
}
.team-profile-sec{
    padding-top: 12px;
    margin-top: -12px;   
}
.team-div-sec{
    margin-bottom: 50px;
}
.team-desc{
    margin-top: 25px;
    text-align: center;
}
.team-desc p{
    margin-bottom: 0px;
}
.team-img{
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    border-radius: 30px;
}
.inner-page-team-bg{
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0px;
    left: 0px;
}
.team-bio, .team-mobile-bio {
    width: 100%;
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    text-align: left;
    position: relative;
}
.team-div-sec.active-team{
    display: flex!important;
    width: 100%!important;
    order: -1;
}
.active-team .team-div{
    width: 100%;
}
.active-team .team-img {
    display: none;
}
.active-team .team-bio .team-img {
    max-width: calc(33.3333333333% - 15px);
    width: 100%;
    margin-right: 40px;
    display: inline-block;
    float: left;
}
.active-team .team-desc{
    display: none;
}
.active-team .team-bio{
    height: auto;
    overflow: auto;
    visibility: visible;
}
hr.theme-hr{
    height: 3px!important;
    background-color: var(--light-color1);
    opacity: 1;
}
.team-div-sec-close{
    display: inline-block;
    color: var(--light-color);
    cursor: pointer;
    padding: 8px;
}
.bio-contact-p a{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    word-break: break-all;
}


/*slick project slider*/

.banner-slider{
  margin-bottom: 50px;
  display: flex;
}
.banner-slider .slider.slider-for,
.banner-slider .slider.slider-nav {
    width: 100%;
    display: inline-block;
}
.banner-slider .slider.slider-for {
    max-width: calc(100% - 27%);
    margin-right: 2%;
}
.banner-slider .slider.slider-nav {
    max-width: 25%;
}
.sliderimg-bg {
  width: 100%;
  height: 750px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 30px;
}
.thumbnail-image{
  margin: 5px 0px;
}
.thumbimg-bg{
  width: 100%;
  height: 235px;
  border-radius: 13px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; 
}
.slick-vertical .slick-slide{
    border: none;
}
.slick-vertical .slick-slide:active,
.slick-vertical .slick-slide:focus,
.slick-arrow:hover,
.slick-arrow:focus {
    border: none;
    outline: 0;
}
.slick-arrow {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  font-size: 35px;
  transform: translateY(-50%);
  z-index: 99;
  color: #fff;
  cursor: pointer;
}
.slick-arrow.fa-angle-left {
   left: 20px;
}
.slick-arrow.fa-angle-right {
   right: 20px;
}
.slick-disabled{
    opacity: 0;
}

@media screen and (min-width : 991px) {
  .slider-nav .slick-arrow{
    top: auto;
    left: 0px;
    right: 0px;
    margin: auto;
    transform: rotate(90deg);
  }
  .slider-nav .slick-arrow.fa-angle-left {
     top: 20px;
  }
  .slider-nav .slick-arrow.fa-angle-right {
     bottom: 20px;
  }
}