:root {
    
    --base-color: 0; 
    --base-color-blue: 221; 

    --black: hsla(var(--base-color),0%, 0%, 1);
    --white: hsla(var(--base-color),0%, 100%, 1);

    --theme-black: hsla(var(--base-color),22%, 17%, 1);
    --light-color: hsla(var(--base-color), 3%, 45%, 1);

    --theme-color:hsla(var(--base-color), 77%, 53%, 1);
    
    --blue-theme-color:hsla(var(--base-color-blue), 41%, 40%, 1);

    --regular-font: Poppins-Regular;
    --medium-font: Poppins-Medium;
    --semibold-font: Poppins-SemiBold;
    --bold-font:  Poppins-Bold;
}

@font-face { font-family: Poppins-Regular; src: url('../fonts/Poppins-Regular.ttf'); } 
@font-face { font-family: Poppins-Medium; src: url('../fonts/Poppins-Medium.ttf'); } 
@font-face { font-family: Poppins-SemiBold; src: url('../fonts/Poppins-SemiBold.ttf'); } 
@font-face { font-family: Poppins-Bold; src: url('../fonts/Poppins-Bold.ttf'); } 

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(--white);
    color: var(--theme-black);
}
.nopadding{
    padding: 0px !important;
}
.sec-pad{
    padding: 80px 0px;
}
.sec-pad-small{
    padding: 60px 0px;
}
a, a:hover{
    color: inherit;
    text-decoration: none;
}
p{
    font-size: 18px;
    line-height: 32px;
    color: var(--light-color);
    text-align: justify;
}
.theme-color{
    color: var(--theme-color)!important;
}
.dark-color{
    color: var(--theme-black)!important;
}
.light-color{
    color: var(--light-color)!important;
}
.light-bg{
    background-color: #F5F5F5!important;
}
.theme-bg{
    background-color: var(--theme-color)!important;
}
.blue-theme-bg{
    background-color: var(--blue-theme-color)!important;
}
.semibold{
    font-family: var(--semibold-font)!important;
}
.medium{
    font-family: var(--medium-font)!important;
}
.regular{
    font-family: var(--regular-font)!important;
}
.bg-white{
    background-color: var(--white);
}

/*header*/

.header-line{
    width: 100%;
    height: 40px;
    background-color: var(--theme-color);
    position: sticky;
    top: 0px;
    z-index: 999;
    -webkit-transition: all ease .5s;
}
.header-line.line-sticky{
    height: 10px;
}
.header{
    width: 100%;
    background-color: var(--white);
    padding: 0px;
    position: sticky;
    top: 10px;
    z-index: 999;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
    /*-webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;*/
}
.sticky-bar{
    box-shadow: 0px 5px 15px 0px #21343014;
}
.navbar{
    padding: 0px;
}
.navbar-light .navbar-brand {
    align-items: center;
    display: flex;
    padding: 0px;
}
.navbar-light .navbar-nav .nav-link {
    color: #272B27;
    font-size: 24px;
    line-height: 40px;
    font-family: var(--semibold-font);
    color: var(--theme-black);
    padding: 35px 10px;
    position: relative;
    transition: all ease .5s;
}
.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(--theme-color);
}
@media (min-width: 1200px){
    .nav-link::before, .nav-item.active .nav-link::before {
        content: "";
        width: 100%;
        height: 3px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0px;
        margin: auto;
        transition: 0.5s all ease;
        transform: scale3d(0,1,1);
        transform-origin: 50% 50%;
        background: var(--theme-black);
    }
    .nav-link:hover::before, .nav-item.active .nav-link::before {
        transform: scale3d(1,1,1);
    }
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
    }
    .navbar-expand-xl .navbar-nav .nav-item {
        padding-right: 15px;
        padding-left: 15px;
    }
    .nav-item-btn{
        width: 220px;
        text-align: right;
    }
    .theme-btn.nav-link-btn{
        font-size: 24px;
        line-height: 40px;
        padding: 3px 40px 5px;
        position: absolute;
        white-space: nowrap;
        top: -3px;
        right: 0px;
        background-color: transparent!important;
    }
    .nav-link-btn:before,
    .nav-link-btn:after {
      content: '';
      position: absolute;
      top: 0px;
      height: 100%;
      width: 55%;
      background: var(--theme-color);
      z-index: -1;
    }
    .nav-link-btn:before {
      left: 0px;
      border-bottom-left-radius: 8px;
      transform: skew(20deg);
      transform-origin: top left;
      background: var(--theme-color);
    }
    .nav-link-btn:after {
      right: 6px;
      border-bottom-right-radius: 8px;
      background: var(--theme-color);
      transform: skew(-20deg);
    }
    .nav-active-line{
        display: block;
        position: absolute;
        bottom: 0px;
    }
    .nav-active-line::before, .nav-active-line::before {
        content: "";
        width: 140px;
        height: 3px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0px;
        margin: auto;
        transition: 0.5s all ease;
        transform: scale3d(0,1,1);
        transform-origin: 50% 50%;
        background: var(--theme-black);
    }
    .nav-link-btn:hover .nav-active-line::before, .nav-active-line.active::before {
        transform: scale3d(1,1,1);
    }
}
.plus-icon{
    color: var(--theme-color)!important;
    font-size: 18px;
}
.navbar-toggler:focus{
    box-shadow: none;
    outline: 0;
}
.navbar-light .navbar-toggler {
    color: #272B27;
    border: none;
}
.navbar-toggler svg{
    color: #272B27;
}
#navbar-hamburger.show{
    display: block;
}
#navbar-hamburger, #navbar-close{
    display: none;
}
#navbar-close.show{
    display: block;
}

/*hero sec*/
.hero-title{
    font-size: 52px;
    line-height: 75px;
    font-family: var(--bold-font);
    margin-bottom: 20px;
}
.theme-btn{
    font-size: 16px;
    line-height: 26px;
    font-family: var(--semibold-font);
    padding: 13px 30px;
    border-radius: 5px;
    background-color: var(--theme-color);
    color: var(--white)!important;
    text-transform: capitalize;
    transition: all ease .5s;
}
.theme-btn:focus{
    box-shadow: none;
    outline: 0;
}
.white-btn{
    background-color: var(--white);
    color: var(--theme-black)!important;
}
.theme-btn:hover{
    background-color: var(--blue-theme-color);
    color: var(--white)!important;
}


/*content area*/
.title{
    font-size: 40px;
    line-height: 50px;
    font-family: var(--bold-font);
    margin-bottom: 30px;
}
.title-line{
    width: 60px;
    height: 3px;
    display: block;
    background-color: var(--theme-color);
    margin-bottom: 20px;
}
.text-justify{
    text-align: justify!important;
}
.border-text-box{
    border-radius: 30px;
    border: 3px solid transparent;
    padding: 45px;
    box-shadow: 0px 10px 25px 0px #21343014;
    transition: all ease .5s;
}
.border-text-box:hover{
    border-color: var(--theme-color);
}
.border-text-box.blue-theme-border:hover{
    border-color: var(--blue-theme-color);
}
.border-text-box p:last-child{
    margin-bottom: 0px;
}
.left-large-img{
    max-width: 109%;
}
.right-large-img{
    max-width: 109%;
    margin-left: -9%;
}
.grey-small-box{
    margin: 0px 2px;
    height: 100%;
    background-color: #EEEEEE;
    border-radius: 30px;
    border: 1px solid #DDDDDD;
    padding: 25px;
}
.grey-small-box p{
    font-size: 16px;
    line-height: 26px;
    color: var(--theme-black);
}
.grey-small-box p:last-child{
    margin-bottom: 0px;
}
.mini-title{
    font-size: 24px;
    line-height: 36px;
    font-family: var(--semibold-font);
    margin-bottom: 10px;
}
.service-icon{
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-box-div{
    margin-bottom: -130px;
}
.quote-box-top-pad{
    padding-top: 250px!important;
}
.quote-box-margin{
    margin-bottom: -40px;
}
.owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
}
.owl-carousel .owl-stage {
    display: flex;
}
.owl-carousel .item {
    display: flex;
    height: 100%;
}
.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: 48px;
    width: 48px;
    background-color: var(--white);
    border-radius: 50%;
    font-size: 32px;
    position: relative;
    color: var(--theme-black);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3.5999999046325684px 36px 0px #0000001A;
}
.owl-nav button:hover i {
    color: var(--theme-color);
}
.owl-nav button.owl-prev {
    left: -50px;
}
.owl-nav button.owl-next {
    right: -50px;
}
.service-carousel .owl-nav button {
    top: auto;
    bottom: 110%;
    right: 0px!important;
    transform: initial; 
}
.service-carousel .owl-nav button.owl-prev {
    left: auto!important;
    right: 60px!important;
}
.owl-carousel .owl-dots {
    height: 18px;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.owl-carousel button.owl-dot span {
    height: 10px;
    width: 10px;
    display: block;
    border-radius: 50%;
    background-color: #DDDDDD;
    opacity: 1;
    margin: 0px 5px;
    transition: all ease .5s;
}
.owl-carousel button.owl-dot.active span {
    background-color: var(--theme-color);
    height: 18px;
    width: 18px;
}


/*round shape */
.relative-9, .inline-reltive-img-div .main-img{
    position: relative;
    z-index: 9;
}
.inline-reltive-img-div{
    display: inline-block;
    position: relative;
}
.round-shape{
    position: absolute;
    z-index: 1;
}
.round-width-300{
    width: 100%;
    max-width: 300px;
}
.hero-text-round-shape{
    position: absolute;
    z-index: 1;
    top: 0px;
    bottom: 0px;
    left: 50%;
    max-width: 50%;
    max-height: 90%;
    margin: auto;
}
.hero-img-round-shape{
    position: absolute;
    z-index: 1;
    top: 0px;
    bottom: 0px;
    left: -40px;
    max-height: calc(100% + 40px);
}
.round-shape-top-right{
    top: -60px;
    right: -40px;
}
.round-shape-top-left{
    top: -60px;
    left: -40px;
}
.round-shape-bottom-left{
    bottom: -60px;
    left: -60px;
}
.round-shape-bottom-right{
    bottom: -60px;
    right: 0px;
}
.top-0{
    top: 0px!important;
}
.quote-box-before{
    position: absolute;
    top: 0px;
    left: 0px;
}
.quote-box-after{
    position: absolute;
    bottom: 0px;
    right: 0px;
}

/*footer*/

.footer{
    width: 100%;
    height: auto;
    background-image: url('../img/footer-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px;
    background-color: #121212;
    color: #fff;
}
.footer p{
    color: #D2D2D2;
    text-align: left;
}
.footer-title{
    font-size: 28px;
    line-height: 45px;
    font-family: var(--semibold-font);
    text-transform: uppercase;
    margin-bottom: 32px;
}
.footer-links p{
    margin-bottom: 8px;
}
.footer-links p a, .theme-link{
    transition: all ease .5s;
}
.footer-links p a:hover, .theme-link:hover{
    color: var(--theme-color);
}
.footer-hr{
    height: 2px!important;
    background-color: #FFFFFF;
    opacity: 0.1;
    margin-bottom: 0px;
}
.footer-line{
    padding: 30px 0px;
}
.footer-line p{
    text-align: center!important;
}


/*inner pages*/

.contact-box{
    padding: 30px 50px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0px 10px 25px 0px #21343014;
}
.form-group{
    margin-bottom: 20px;
}
.form-group label{
    font-family: var(--medium-font);
    color: var(--theme-black);
    margin-bottom: 8px;
}
.form-control{
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    padding: 16px 20px;
    line-height: 22px;
    color: var(--theme-black);
}
.form-control::placeholder{
    color: var(--light-color);
}
.form-control:focus{
    box-shadow: none;
    outline: 0;
    border-color: var(--blue-theme-color);
}
.ft-20{
    font-size: 20px;
    line-height: 32px;
}
.contact-icon{
    min-width: 70px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--theme-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    padding: 15px;
}
.medium-title{
    font-size: 30px;
    line-height: 40px;
    font-family: var(--semibold-font);
    margin-bottom: 15px;
}
.ft-16{
    font-size: 16px;
    line-height: 28px;
}
.grey-text-box{
    background-color: #F5F5F5;
    padding: 12px 35px;
    border-radius: 10px;
    display: inline-block;
}
.tab-relative{
    position: sticky;
    top: 110px;
}
.theme-nav-tabs-div{
    width: 100%;
    /*background-color: var(--white);*/
    box-shadow: 0px 5px 25px 0px #00000012;
    border-radius: 30px;
    padding: 30px 0px;
}
.theme-nav-tabs{
    display: block;
    height: auto;
    max-height: calc(100vh - 270px);
    overflow-y: auto;
}
.theme-nav-tabs.service-theme-nav-tabs{
    height: calc(100vh - 270px);
    max-height: 710px;
}
.theme-nav-tabs::-webkit-scrollbar {
    width: 8px;
    border-radius: 50px;
}
.theme-nav-tabs::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 50px;
}
.theme-nav-tabs::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 50px;
}
.theme-nav-tabs.nav-pills .nav-link {
    border-radius: 0px;
    color: var(--theme-black)!important;
    background-color: transparent!important;
    text-align: left;
    padding: 10px 40px;
    font-size: 26px;
    line-height: 45px;
    position: relative;
}
.theme-nav-tabs.nav-pills .nav-link.active, .theme-nav-tabs.nav-pills .show>.nav-link {
    font-family: var(--bold-font);
    color: var(--theme-black)!important;
    background-color: transparent!important;
}
.theme-nav-tabs.nav-pills .nav-link::before{
    content: '';
    width: 5px!important;
    height: 45px;
    display: block;
    background-color: var(--theme-color);
    border-radius: 0px 6px 6px 0px;
    opacity: 0;
    position: absolute;
    left: 0px;
    right: auto;
    top: 0px;
    bottom: 0px;
    margin: auto;
    transform: initial;
    transition: opacity ease 0s;
}
.theme-nav-tabs.nav-pills .nav-link:hover::before{
    opacity: 0;
}
.theme-nav-tabs.nav-pills .nav-link.active::before, .theme-nav-tabs.nav-pills .show>.nav-link::before, .theme-nav-tabs.nav-pills .nav-link.active:hover::before {
    opacity: 1;
}
.theme-nav-tabs-collapse-btn{
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    line-height: 32px;
    box-shadow: 0px 5px 25px 0px #00000012!important;
    border-radius: 20px;
    padding: 20px 20px;
    background-color: var(--white);
    font-family: var(--semibold-font);
    outline: 0!important;
    margin-bottom: 25px;
    text-align: left;
}
.grey-small-box.test-white-box{
    border: none;
    background-color: var(--white);
    box-shadow: 0px 10px 15px 0px #21343014;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-carousel .item{
    padding: 25px 15px;
}
.start-li{
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.start-li span{
    display: inline-block;
    color: #D2D2D2;
}
.start-li span.active{
    color: #EBB044;
}
.test-quote-img{
    margin-top: -25px;
    margin-bottom: 15px;
}
.dev-img{
    margin-bottom: 50px;
}
.development-carousel .item{
    padding: 15px;
}
.development-box{
    background-color: #F5F5F5;
    border-radius: 30px;
    box-shadow: 0px 10px 15px 0px #21343014;
    padding: 50px 60px;
}