body,html{
    overflow-x: hidden;
    position: relative;
    font-family: "Montserrat";
    background-color: #eceef0;
    padding: 0;
    margin-bottom: 0;
    text-transform: capitalize;
    overflow-x: hidden;
}

.medium{
    font-size: .8rem;
}
.text-pri{
color: #b11212;
}
.text-sec{
    color: #1e75af;
}
.text-grey{
    color: rgb(107, 107, 107);;
}
.bg-pri{
background: #b11212;
}
.bg-sec{
    background: #1e75af;
}
.bg-light{
    background: #fff;
}
.f-bold{
    font-weight: bold;
}
.f-bolder{
    font-weight: bolder;
}
.radius-10{
    border-radius: 1rem;
}
.radius-20{
    border-radius: 2rem;
}
.navbar-brand img{
    height: 60px;;
    width: auto;
    margin-left: 50px;
}
.btn{
    border-radius: 0;
}
.header{
    height: 600px;
    position: relative;
   padding: 0;
   margin-top: 0;
}
.header img{
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center;
    animation: header-animation 15s infinite ease-in-out alternate-reverse;
    z-index: 1;
}
.headerlocation{
    height: 600px;
    position: relative;
   padding: 0;
   margin-top: 0;
}
.headerlocation img{
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center;

    z-index: 1;
}
@keyframes header-animation {
    from{
        transform:scale(1);
    transform-origin: 50% 100%;
    }
    to{
        transform:scale(1.2);
    transform-origin: 50% 100%;
    }
}
.header .overlay1{
    height: 620px;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-image:linear-gradient(to right, #0d74b8d5,#ce0808d0);
    z-index: 2;
}
.header .caption{
    width: 70%;
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
   text-align: center;
    z-index: 3;

}
.header .caption h1{
    font-size: 3rem;
}
.header .caption h2{
    font-size: 1.2rem;
}

.headerlocation .caption{
    width: 70%;
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
   text-align: center;
    z-index: 3;

}
.headerlocation .caption h1{
    font-size: 3rem;
}
.headerlocation .caption h2{
    font-size: 1.2rem;
}

.service-item {
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
    text-align: center;
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out .2s;
}
.service-item .icon{
    color: #b11212;
    transition: all ease-in-out .2s;
    margin-top: .5rem;
    font-size: 2rem;
    margin-bottom: .5rem;
}
.service-item:hover{
    border: thin solid #1e75af9a;
}
.service-item:hover>.icon{
    margin-top: 1rem;
    font-size: 2.5rem;
}


.service-item h3{
    color: #1e75af;
    font-size: 22px;
    font-weight: bolder;
    margin-top: .5rem;
}
.service-item p{
    color: rgb(107, 107, 107);;
    margin-top: .5rem;
    line-height:1.5em;
    min-height:4.5em;
}


.sector-item{
    position: relative;
    height: 400px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.sector-item img{
    width: 100%;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.sector-item .caption{
    width: 90%;
    height: 250px;
    padding: 20px;
    padding-top: 50px;
    background: white;
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    border-radius: 10px;
    transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275) .2s;
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
}
.sector-item:hover>.caption{
    background: #1e75af;
}

.sector-item .icon{
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 65px;
    line-height: 65px;
    background-color: #b11212;
    color: white;
    border-radius: 50%;
    text-align: center;
    z-index: 4;
    transition: all ease-in-out .2s;
}
.sector-item:hover>.icon{
    width: 70px;
    height: 70px;
    line-height: 65px;
    background-color: white;
    color: #b11212;
}
.sector-item .caption h3{
    color: #1e75af;
    font-weight: bolder;
    transition: all ease .2s;
    z-index: 3;
    transition: all ease-in-out .2s;
}
.sector-item:hover>.caption h3{
    color: white;
}
.sector-item .caption p{
  font-size: .8rem;
  color: grey;
}
.sector-item:hover>.caption p{
    color: white;
}

.client-say{
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    transition: all ease-in-out .2s;
}
.client-say:hover{
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.5);
}
.signup-bg{
    width: 100%;
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
.signup-bg::after{
    content: "";
    position: absolute;
    top:0;
    left: 0;
    background-color: #1a6292b4;
    width: 100%;
    height: 100%;
}
.signup{
    position: relative;
    height: 800px;
}
.signup-dialog{
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px;
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.5);

    width: 70%;
    min-height: 400px;
    background-color: rgb(245, 245, 245);
}
.signup-dialog .stepper-container{

    background: white;
    height: 100%;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
.signup-dialog .stepper-container form{
    margin-top: 80px;
    min-height: 100%;
}
.signup-dialog .stepper-container form label{
    font-size: small;
}

.signup-dialog .stepper-container form .form-control{
    font-size: .8rem;
    background-color: #F4F4F4;
}
.signup-dialog .stepper{
    position: relative;
    padding: .5rem;

}
.signup-dialog .stepper .line{
    position: absolute;
    top: 50px;
    left: 50%;
    width: 70%;
    height: 1px;
    transform: translateX(-50%);
    background: rgb(218, 218, 218);

}
.signup-dialog .stepper .steps{
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;


}

.signup-dialog .stepper .steps span{
    width: 35px;
    height: 35px;
    border: thin solid #7a7a7a91;
    background: white;
    color: #7a7a7a91;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    transition: all ease .2s;
}
.signup-dialog .stepper .steps span.active{
    width: 40px;
    height: 40px;
    border: none;
    background-color:  #1e75af;
    color: white;
    line-height: 40px;
    border-radius: 50%;
}


@media only screen and (min-width: 480px){
    .navbar-brand img{
        height: 60px;;
        width: auto;
        margin-left: 5px;
    }
    .header .caption{
        width: 90%;
        position: absolute;
        top: 150px;
        left: 50%;
        transform: translateX(-50%);
       text-align: center;
        z-index: 3;

    }
    .header .caption h1{
        font-size: 2rem;
    }
    .header .caption h2{
        font-size: 1rem;
    }
    .signup-dialog{
        width: 90%;
        min-height: 400px;
        background-color: rgb(245, 245, 245);
    }
}
