:root {

    --black: #000;
    --white: #fff;
    --theme-black: #272931;
    --light-color: #727787;
    --theme-white: #F8FAFF;
    --theme-white-light: #CDD4E9;
    --theme-color: #3275F5;
    --dark-theme-color: #102C78;
    

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

@font-face { font-family: Prompt-Regular; src: url('../fonts/Prompt-Regular.ttf'); } 
@font-face { font-family: Prompt-Medium; src: url('../fonts/Prompt-Medium.ttf'); } 
@font-face { font-family: Prompt-SemiBold; src: url('../fonts/Prompt-SemiBold.ttf'); } 
@font-face { font-family: Prompt-Bold; src: url('../fonts/Prompt-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: 110px 0px; 
}
.sec-pad-top-small{
    padding-top: 70px!important; 
}
a, a:hover{
    color: inherit;
    text-decoration: none;
}
p{
    font-size: 18px;
    line-height: 30px;
    color: var(--light-color);
}
.ft-16{
    font-size: 16px;
    line-height: 26px;
}
.ft-20{
    font-size: 20px;
    line-height: 30px;
}
.text-white{
    color: var(--theme-white);
}
.text-white p{
    color: var(--theme-white-light);
}
.theme-color{
    color: var(--theme-color)!important;
}
.dark-color{
    color: var(--theme-black)!important;
}
.medium{
    font-family: var(--medium-font)!important;
}
.semibold{
    font-family: var(--semibold-font)!important;
}
.dark-bg{
    background-color: var(--theme-black);
}
.dark-theme-bg{
    background-color: var(--dark-theme-color);
}
.theme-bg{
    background-color: var(--theme-color)!important;
}

/*header*/

.header{
    width: 100%;
    background: var(--dark-theme-color);
    padding: 25px 0px;
    position: relative;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 999;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
}
.sticky-bar{
    position: fixed;
    padding: 15px 0px;
    box-shadow: 0px 4px 35px 0px #00000026;
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}
.navbar{
    padding: 0px;
}
.navbar-light .navbar-brand {
    align-items: center;
    display: flex;
    padding: 0px;
}
.navbar-light .navbar-nav .nav-link {
    color: var(--theme-white);
    font-size: 18px;
    padding: 10px 10px;
    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(--theme-color);
}
@media (min-width: 1200px){
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
        margin-right: 35px;
        margin-left: 35px;
    }
    .nav-link-btn{
        margin-left: 35px;
    }
}
.nav-link-btn{
    display: inline-flex;
    align-items: center;
    line-height: 20px!important;
    padding: 9px 30px 9px 20px!important;
}
.navbar-toggler:focus{
    box-shadow: none;
    outline: 0;
}
.navbar-light .navbar-toggler {
    color: var(--theme-white);
    border: none;
}
.navbar-toggler svg{
    color: var(--theme-white);
}
#navbar-hamburger.show{
    display: block;
}
#navbar-hamburger, #navbar-close{
    display: none;
}
#navbar-close.show{
    display: block;
}

/*hero sec*/

.hero-sec{
    padding: 30px 0px 50px;
}
.hero-title{
    font-size: 55px;
    line-height: 65px;
    font-family: var(--semibold-font);
    margin-bottom: 30px;
}
.hero-img-div-pad{
    display: inline-block;
    padding-right: 18px;
    padding-bottom: 18px;
}
.hero-img-div{
    display: inline-block;
    position: relative;
}
.hero-img{
    display: inline-block;
    border-radius: 150px 0px 0px 0px;
    box-shadow: 0px 4px 35px 0px #3274F526;
    position: relative;
    z-index: 9;
}
.hero-img-bg-shade{
    height: 100%;
    width: 100%;
    border-radius: 150px 0px 0px 0px;
    background-color: var(--theme-color);
    position: absolute;
    right: -18px;
    bottom: -18px;
    z-index: 0;
}

/*content area*/

.title-line{
    display: inline-flex;
    align-items: center;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 0.5em;
    font-family: var(--semibold-font);
    color: var(--theme-color);
    text-transform: uppercase;
    margin-bottom: 5px;
}
.title-line::after{
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--theme-color);
    display: inline-block;
    margin-left: 20px;
}
.title{
    display: block;
    font-size: 45px;
    line-height: 55px;
    font-family: var(--semibold-font);
    margin-bottom: 20px;
}
.theme-btn{
    font-size: 18px;
    line-height: 28px;
    color: var(--theme-white)!important;
    background-color: var(--theme-color);
    border-radius: 10px;
    padding: 15px 40px;
    text-transform: capitalize;
    box-shadow: none!important;
    outline: 0!important;
}
.theme-radius-img{
    display: inline-block;
    border-radius: 0px 150px 0px 0px;
    box-shadow: 0px 4px 35px 0px #3274F526;
}
.about-img-div-pad{
    display: inline-block;
    padding-right: 34px;
}
.about-img-div{
    display: inline-block;
    position: relative;
}
.about-img-text{
    width: 100%;
    max-width: 150px;
    padding: 25px 20px;
    text-align: center;
    background: rgb(50 117 245 / 50%);
    backdrop-filter: blur(4px);
    border-radius: 5px 58px 5px 5px;
    position: absolute;
    bottom: 0px;
    right: -34px;
    overflow: hidden;
}
.about-img-text::after{
    content: '';
    width: 100%;
    height: 100%;
    background: #3275F5CC;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    position: absolute;
    bottom: 0px;
    right: 0px;
}
.relative-9{
    position: relative;
    z-index: 9;
}
.check-list p{
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}
.check-list .check-icon{
    margin-right: 15px;
}
.check-list .check-icon img{
    min-width: 20px;
    width: 20px;
}
.about-content-area{
    position: relative;
    padding-left: 50px;
}
.vertical-title-line{
    position: absolute;
    left: 0px;
    top: 0px;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}
.title-line.vertical-title-line::after{
    content: '';
    height: 40px;
    width: 2px;
    margin-left: 0px;
    margin-top: 15px;
    margin-bottom: 10px;
}
.service-box-margin{
    margin-top: 30px;
}
.service-box{
    height: 100%;
    background-color: var(--theme-white);
    border-radius: 10px;
    padding: 30px 22px;
    box-shadow: 0px 4px 35px 0px #00000026;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-icon-div{
    height: 89px;
    width: 89px;
    border-radius: 50%;
    background-color: var(--theme-color);
    color: var(--theme-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.mini-title{
    font-size: 22px;
    line-height: 32px;
    font-family: var(--semibold-font);
}
.arrow-icon{
    display: inline-block;
    transition: all ease .5s;
}
.service-box a:hover .arrow-icon{
    transform: translateX(10px);
}
.theme-service-box{
    background-color: var(--theme-color);
}
.theme-service-box .service-icon-div{
    background-color: var(--theme-white);
    color: var(--theme-color);
}
.map-contact-border-div{
    background-color: var(--theme-white);
    box-shadow: 0px 4px 35px 0px #00000012;
    border: 1px solid #3275F533;
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.start-map-icon img{
    min-width: 38px;
    width: 38px;
    height: auto;
}
.call-icon-round{
    height: 50px;
    min-width: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #E5EAFA;
    color: var(--theme-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

/*footer*/

.footer{
    background-color: #181A1F;
    padding-bottom: 25px!important;
}
.footer-links li{
    list-style: none;
}
.footer a{
    transition: all ease .5s;
}
.footer a:hover{
    color: var(--theme-color);
}
.footer-hr{
    background-color: #3D3D3D;
    opacity: 1;
    margin: 25px 0px;
}


/*inner pages*/

.white-box{
    background-color: var(--theme-white);
    padding: 25px 30px;
    border-radius: 10px;
}
.box-border{
    border: 1px solid #EBEBEB;
}
.medium-title {
    font-size: 35px;
    line-height: 45px;
    font-family: var(--semibold-font);
}
.form-group{
    margin-bottom: 20px;
}
.form-control{
    font-size: 18px;
    line-height: 30px;
    color: var(--theme-black);
    background-color: #fff!important;
    border-radius: 5px;
    border: 1px solid #E0E0E0;
    padding: 9px 20px;
}
.form-control::placeholder{
    color: #A7A7A7;
}
.form-control:focus{
    box-shadow: none;
    outline: 0;
    border-color: var(--theme-color);
}
.left-layer-img-div-pad{
    display: inline-block;
    padding-left: 10px;
    padding-bottom: 10px;
}
.left-layer-img-div{
    display: inline-block;
    position: relative;
}
.left-layer-img{
    display: inline-block;
    border-radius: 0px 150px 0px 0px;
    box-shadow: 0px 4px 35px 0px #3274F526;
    position: relative;
    z-index: 9;
}
.left-layer-img-bg-shade{
    height: 100%;
    width: 100%;
    border-radius: 0px 150px 0px 0px;
    background-color: var(--theme-color);
    position: absolute;
    left: -10px;
    bottom: -10px;
    z-index: 0;
}
.work-img-div{
    display: inline-block;
    width: 100%;
    height: 380px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-top: 30px;
}
.work-img{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all ease .5s;
}
.work-img-div:hover .work-img{
    transform: scale(1.2);
}
.work-img-text-layer{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 25px;
}
.my-theme-btn{
    position: relative;
    display: inline-block;
    background-color: transparent;
    border: none;
    margin: 0px;
    padding: 0px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none!important;
    outline: 0!important;
}
.my-theme-btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--theme-color);
    transition: 0.3s ease-out;
}
.my-theme-btn span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 28px;
    padding: 15px 40px;
    border-radius: 10px;
    text-transform: capitalize;
    transition: 0.3s;
    color: var(--theme-white);
    border: 1px solid var(--theme-color);
    transition: 0.2s 0.1s;
}
.my-theme-btn:hover::before {
    width: 0%;
}
.my-theme-btn:hover span{
    color: var(--theme-color);
    transition: 0.2s 0.1s;
}