/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Font Family ***/

@font-face {
    font-family: helvatica;
    src: url(../font/Helvetica.ttf);
  }

  @font-face {
    font-family: helvatica-bold;
    src: url(../font/Helvetica-Bold.ttf);
  }

*{
    font-family: helvatica;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(15, 23, 43, .7); */
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

#header-carousel .carousel-item{
    position: relative;
    height: 630px;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 140px;
    height: 140px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: #031032;
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    margin-top: -110px;
    padding-top: 180px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* ///////////////////////////////////////////////Custom CSS////////////////////////////////////////////////////////////////// */

.main-header .navbar-nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1em 0;
}

.main-header .navbar-nav .nav-link{
    color: #000000;
    font-size: 1.2em;
    margin-right: 1em;
    font-weight: 600;
    padding: 5px 30px;
}

.main-header .navbar-nav .show > .nav-link, .main-header .navbar-nav .nav-link.active{
    border: 1px solid #1c2254;
    border-radius: 10px;
    color: #1c2254;
}

.main-header .navbar-nav .btn{
    background-color: rgb(37, 211, 102);
    color: #FFFFFF;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 10px;
}

.main-header .navbar-nav .btn:hover{
    color: #FFFFFF;
    background-color: #000;
}

.header-logo{
    width: 200px;
}

.header-topbox{
    background-color: #d7d7d7;
}

.header-topbox img{
    width: 15px;
    margin-right: 5px;
}

.header-topbox p{
    color: #204097;
    font-size: 0.9em;
    font-weight: 500;
}

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////About Section/////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.about-section{
    padding: 2em 0;
    background: url(../img/home/background.jpg);
}

.about-section .about-section-text{
    margin-top: 4em;
}

.about-section .about-section-text h4{
    color: #9b908a;
    font-size: 3em;
}


.about-section .about-section-text h2{
    color: #1c2254;
    font-size: 3em;
}

.about-section .about-section-text p{
    color: #000000;
    font-size: 1em;  
    font-weight: 500;
    text-align: justify;  
}

.padding-about{
    padding: 4em 0;
}

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////Service Section/////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.service-section{
    padding: 4em 0;
    background: linear-gradient(180deg,#ffffff 55%, #1c2254 55%);
}

.section-heading p{
    color: #1c2254;
    font-weight:600;
    font-size: 3em;
    font-family: helvatica-bold;
}

.section-heading p span{
    color: #9b908a;
    font-weight: 600;
    font-family: helvatica-bold;
}

.service-section .service-box-text{
    background-color: #fff;
    min-height: 200px;
    border-radius: 0px 0px 10px 10px;
}

.service-section .service-box-text h4{
    font-size: 1em;
    font-weight:600;
    padding: 1.8em 0.8em;
    position: relative;
}

.service-section .service-box-text h4:after{
    content: "";
    position: absolute;
    bottom: 10px;
    left: 15px;
    height: 2px;
    width: 150px;
    background-color: #9b908a;
}

.service-section .service-box-text p{
    font-size: 1em;
    font-weight: 500;
    padding: 0 0.8em;
}

.service-section .career-section-heading h1{
    color: #FFFFFF;
    margin-top: 0.5em;
}

.service-section .career-section-heading p{
    color: #FFFFFF;
    margin-bottom: 2em;
}

.service-section .career-section-heading .career-btn{
    background-color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
}


/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////Industry Section//////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.industry-section{
    padding: 4em 0;
}

.industry-section .industry-block{
    display: flex;
    flex-direction: row;
    padding: 0 2em;
}

.industry-section .industry-block .service-box{
    width: 200px;
    margin: 0 10px;
    box-shadow: 0px 0px 5px 0px rgba(28,34,84,0.75);
    padding: 15px 0;
    border-radius: 25px 0px 25px 0px;
}

.industry-section .industry-block .service-box:hover{
    background-color: #152352;
}

.industry-section .industry-block .service-box:hover .service-box-heading{
    color: #ffffff;
}

.industry-section .industry-block .service-box .service-box-icon{
    margin: auto;
    width: 80px;
    height: 80px;
}

.industry-section .industry-block .service-box h6{
    font-size: 1em;
    font-weight: 600;
    margin-top: 10px;
}

.industry-section .industry-block .service-box p{
    font-size: 0.9em;
    font-weight: 400;
    line-height: 1em;
}

.industry-section .industry-block .service-box:hover {
    color: #fff;
}

.industry-section .industry-block .service-box .sbi-1{
    background: url(../img/home/servicess/1.png);
}

.industry-section .industry-block .service-box .sbi-2{
    background: url(../img/home/servicess/2.png);
}

.industry-section .industry-block .service-box .sbi-3{
    background: url(../img/home/servicess/3.png);
}

.industry-section .industry-block .service-box .sbi-4{
    background: url(../img/home/servicess/4.png);
}

.industry-section .industry-block .service-box .sbi-5{
    background: url(../img/home/servicess/5.png);
}

.industry-section .industry-block .service-box .sbi-6{
    background: url(../img/home/servicess/6.png);
}

.industry-section .industry-block .service-box .sbi-7{
    background: url(../img/home/servicess/7.png);
}

.industry-section .industry-block .service-box .sbi-8{
    background: url(../img/home/servicess/8.png);
}

.industry-section .industry-block .service-box .sbi-9{
    background: url(../img/home/servicess/9.png);
}

.industry-section .industry-block .service-box .sbi-10{
    background: url(../img/home/servicess/10.png);
}

.industry-section .industry-block .service-box .sbi-11{
    background: url(../img/home/servicess/11.png);
}

.industry-section .industry-block .service-box .sbi-12{
    background: url(../img/home/servicess/12.png);
}

.industry-section .industry-block .service-box .sbi-13{
    background: url(../img/home/servicess/13.png);
}

.industry-section .industry-block .service-box .sbi-14{
    background: url(../img/home/servicess/14.png);
}

/*////////////////////////// ***Hover*** //////////////////////////*/

.industry-section .industry-block .service-box:hover .sbi-1{
    background: url(../img/home/servicess/White/1.png)no-repeat center center;
}

.industry-section .industry-block .service-box:hover .sbi-2{
    background: url(../img/home/servicess/White/2.png)no-repeat center center;
}

.industry-section .industry-block .service-box:hover .sbi-3{
    background: url(../img/home/servicess/White/3.png)no-repeat center center;
}

.industry-section .industry-block .service-box:hover .sbi-4{
    background: url(../img/home/servicess/White/4.png)no-repeat center center;
}

.industry-section .industry-block .service-box:hover .sbi-5{
    background: url(../img/home/servicess/White/5.png)no-repeat center center;
}

.industry-section .industry-block .service-box:hover .sbi-6{
    background: url(../img/home/servicess/White/6.png)no-repeat center center;
}

.industry-section .industry-block .service-box:hover .sbi-7{
    background: url(../img/home/servicess/White/7.png)no-repeat center center;
}

.industry-section .industry-block .service-box:hover .sbi-8{
    background: url(../img/home/servicess/White/8.png)no-repeat center center;
}

.industry-section .industry-block .service-box:hover .sbi-9{
    background: url(../img/home/servicess/White/9.png)no-repeat center center;
}

.industry-section .industry-block .service-box:hover .sbi-10{
    background: url(../img/home/servicess/White/10.png)no-repeat center center;
}

.industry-section .industry-block .service-box:hover .sbi-11{
    background: url(../img/home/servicess/White/11.png)no-repeat center center;
}

.industry-section .industry-block .service-box:hover .sbi-12{
    background: url(../img/home/servicess/White/12.png)no-repeat center center;
}

.industry-section .industry-block .service-box:hover .sbi-13{
    background: url(../img/home/servicess/White/13.png)no-repeat center center;
}

.industry-section .industry-block .service-box:hover .sbi-14{
    background: url(../img/home/servicess/White/14.png)no-repeat center center;
}


/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////Country Section//////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.country-section{
    padding: 4em 0;
    background: url(../img/home/background.jpg);
}

.country-section .country-block{
    display: flex;
    flex-direction: row;
    padding: 0 2em;
}

.country-section .country-block .country-box{
    position: relative;
    margin: 0 10px;
}

.country-section .country-block .country-box .country-box-name{
    position: absolute;
    bottom: 0;
    left: 10px;
    color: #ffffff;
    text-transform: uppercase;
}

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////Footer Section//////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.footer-main{
    background-color: #031033;
    padding: 1em 2em;
}

.footer-main h6{
    color: #ffffff;
    text-decoration: underline;
    font-size: 1.2em;
}

.footer-main .footer-logo a{
    display: block;
    color: #ffffff;
    font-size: 0.9em;
}

.footer-main .footer-contact ul{
    list-style: none;
}

.footer-main .footer-contact ul li{
    position: relative;
}

.footer-main .footer-contact ul li p{
    color: #ffffff;
    font-size: 0.9em;
}

.footer-main .footer-contact .footer-address:before{
    content: "";
    position: absolute;
    top: 0;
    left: -35px;
    width: 25px;
    height: 25px;
    background: url(../img/home/Address.png)no-repeat center center;
    background-size: contain;
}

.footer-main .footer-contact .footer-email:before{
    content: "";
    position: absolute;
    top: 0;
    left: -35px;
    width: 25px;
    height: 25px;
    background: url(../img/home/Mail\ footer.png)no-repeat center center;
    background-size: contain;
}

.footer-main .footer-social a{
    display: block;
    font-size: 0.9em;
    color: #ffffff;
}

.footer-main .footer-social .fab{
    color: #9b908a;
    margin-right: 7px;
    margin-top: 7px;
}

.footer-main .footer-quicklink .btn-link{
    display: block;
    margin-bottom: 0px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 1em;
    line-height: 1.2em;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer-main .footer-quicklink .btn-link:hover, 
.footer-main .footer-logo a:hover, 
.footer-main .footer-social a:hover, 
.footer-main .footer-copyright p a:hover{
    color: #FEA116;
}

.footer-main .footer-contact,
.footer-main .footer-social,
.footer-main .footer-quicklink{
    margin-top: 3em;
}

.footer-main .footer-copyright{
    margin-top: 15px;
    border-top:1px solid #9b908a;
    padding-top: 10px;
}

.footer-main .footer-copyright p{
    color: #9b908a;
    font-size: 0.9em;
}

.footer-main .footer-copyright p a{
    color: #9b908a;
}

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////About Page////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.domain-section{
    padding: 4em 0;
}

.domain-section .domain-header h3, .domain-section .domain-header h1{
    margin-left:35% ;
}

.domain-section .domain-header h3{
    color: #9b908a;
    font-size: 1.8em;
    font-weight: 700;
}

.domain-section .domain-header h1{
    color: #1c2256;
    font-size: 2.4em;
    font-weight: 700;
}

.domain-section .domain-block{
    display: flex;
    flex-direction: row;
    margin-top: 3em;
}

.domain-section .domain-block .domain-box{
    margin: 0 15px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    padding: 15px ;
}

.domain-section .domain-block .domain-box h4{
    font-size: 1em;
    font-weight: 700;
    color: #000;
}

.domain-section .domain-text{
    margin-top: 4em;
}

.domain-section .domain-text p{
    font-size: 1.1em;
    font-weight: 500;
}

.domain-section .domain-text p strong{
    color: #041134;
}

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////Vision section//////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.vision-section{
    padding: 4em 0;
}

.vision-section .value-box{
    background-color: #031032;
    min-height: 380px;
    padding: 0.5em 2em;
    box-shadow: 0px 0px 15px 0px rgba(3,16,51,0.5);
}

.vision-section .value-box h1{
    border: 1px solid #031032;
    text-align: center;
    font-size: 2em;
    padding: 0.5em;
    position: relative;
    background-color: #fff;
}

.vision-section .vision-b h1:after{
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    background:#fff url(../img/about/Vision-b.png) no-repeat center center;
    background-size: contain;
    height: 100px;
    width: 100px;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 0px rgba(3,16,51,0.5);
}

.vision-section .mission-b h1:after{
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    background:#fff url(../img/about/Mission-b.png) no-repeat center center;
    background-size: contain;
    height: 100px;
    width: 100px;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 0px rgba(3,16,51,0.5);
}

.vision-section .core-b h1:after{
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    background:#fff url(../img/about/values-b.png) no-repeat center center;
    background-size: contain;
    height: 100px;
    width: 100px;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 0px rgba(3,16,51,0.5);
}


.vision-section .value-box p{
    color: #fff;
    padding:2em 2em;
    text-align: justify;
}


/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////Choosing section//////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.choosing-section{
    padding: 2em 0;
}

.choosing-section .choosing-text{
    margin-top: 4em;
}

.choosing-section .choosing-img img{
    width: 70%;
}

.choosing-section .choosing-text h4{
    color: #9b908a;
    font-weight: 700;
    font-size: 2em;
}

.choosing-section .choosing-text .choosing-info{
    display: flex;
    flex-direction: row;
    margin-top: 2em;
    width: 100%;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    padding: 10px 5px;
}

.choosing-section .choosing-text .choosing-info ul{
    width: 50%;
    margin-bottom: 0;
    list-style: none;
}

.choosing-section .choosing-text .choosing-info ul li{
    font-size: 1em;
    font-weight: 800;
    color: #152352;
    position: relative;
    margin-top: 5px;
    /* font-family: helvatica-bold; */
}

.choosing-section .choosing-text .choosing-info ul li:before{
    content: "";
    position: absolute;
    top: 0px;
    left: -15px;
    width: 7px;
    height: 20px;
    background-color: #9b908a;
}

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////Service Page//////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.service-w-section{
    padding: 4em 0;
}

.service-w-section .service-block .service-white-box, .service-w-section .service-block .service-blue-box{
    display: flex;
    flex-direction: row;
}

.service-w-section .service-block .service-white-box .service-text-box,
.service-w-section .service-block .service-blue-box .service-text-box{
    width: 50%;
    padding: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

.service-w-section .service-block .service-blue-box .service-text-box{
    background-color: #031032;
}

.service-w-section .service-block .service-blue-box .service-text-box h6{
    color: #ffffff;
}

.service-w-section .service-block .service-white-box .service-text-box p, 
.service-w-section .service-block .service-blue-box .service-text-box p{
    font-size: 1em;
    line-height: 1.2em;
    margin-bottom: 0;   
}

.service-w-section .service-block .service-white-box .service-img-box, 
.service-w-section .service-block .service-blue-box .service-img-box{
    width: 50%;
}

.service-boxborderleft-b, 
.service-boxborderright-g,
.service-boxborderleft-g,
.service-boxborderright-b,
.service-block-blue,
.service-block-grey{
    position: relative;
}

.service-boxborderleft-b:before{
    content: "";
    position: absolute;
    top: 15px;
    left: -8px;
    height: 200px;
    width: 8px;
    background-color: #031032;
}
.service-boxborderleft-g:before{
    content: "";
    position: absolute;
    top: 15px;
    left: -8px;
    height: 200px;
    width: 8px;
    background-color: #9b908a;
}

.service-boxborderright-b:before{
    content: "";
    position: absolute;
    top: 15px;
    right: -8px;
    height: 200px;
    width: 8px;
    background-color: #031032;
}

.service-boxborderright-g:before{
    content: "";
    position: absolute;
    top: 15px;
    right: -8px;
    height: 200px;
    width: 8px;
    background-color: #9b908a;
}

/* .service-block-blue:before{
    content: "";
    position: absolute;
    top: 15px;
    left: 45%;
    width: 150px;
    height: 200px;
    background-color: #031032;
}

.service-block-grey:before{
    content: "";
    position: absolute;
    top: 15px;
    left: 45%;
    width: 150px;
    height: 200px;
    background-color: #9b908a;
} */


.service-w-section .service-w-box{
    background-color: #fff;
    padding-bottom: 1.5em;
    min-height: 740px;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
    border-radius: 0px 0px 25px 0px;
}

.service-w-section .service-w-box img{
    width: 100%;
}

.service-w-section .service-w-box h1{
    font-size: 1.6em;
    text-align: center;
    margin: 10px 5%;
    min-height: 62px;
}

.service-w-section .service-w-box p{
    text-align: justify;
    font-size: 1em;
    line-height: 1.2em;
    color: #000;
    margin: 0 7%;
}

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////Contact Page///////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.contact-section{
    padding: 5em 10em;
    background: url(../img/contact/bg.jpg) no-repeat center center;
}

.contact-section .contact-map{
    position: relative;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    border-radius: 15px 0px 0px 0px;
    padding: 0;
}

.contact-section .contact-map .contact-social{
    background-color: #031033;
    position: absolute;
    bottom: 5px;
    left: -43px;
    padding: 5px;
}

.contact-section .contact-map .contact-social:before{
    content: "";
    position: absolute;
    top: 0;
    left: -8px;
    height: 100%;
    width: 8px;
    background-color: #9b908a;
}

.contact-section .contact-map .contact-social a{
    display: block;
    font-size: 2em;
    color: #fff;
}

.contact-section .contact-form-box{
    background-color: #fff;
    border-radius: 0px 0px 15px 0px;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}

.contact-section .contact-form-box .contact-info-box{
    background-color: #031033;
    padding: 20px;
    position: relative;
}

.contact-section .contact-form-box .contact-info-box::after{
    content: "";
    position: absolute;
    top: 0;
    right: -8px;
    width: 8px;
    height: 100%;
    background-color: #9b908a;
}

.contact-section .contact-form-box .contact-info-box .contact-address, 
.contact-section .contact-form-box .contact-info-box .contact-phone,
.contact-section .contact-form-box .contact-info-box .contact-email{
   padding-left: 30px;
   color: #ffffff;
   position: relative;
   font-size: 0.9em;
}
.contact-email{
    display: inline;
}

.contact-address:before{
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: 30px;
    height: 30px;
    background: url(../img/contact/Address.png) no-repeat center center;
}

.contact-phone:before{
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: 30px;
    height: 30px;
    background: url(../img/contact/call.png) no-repeat center center;
}

.contact-email:before{
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: 30px;
    height: 30px;
    background: url(../img/contact/Mail.png) no-repeat center center;
}

.contact-section .contact-form-box .contact-form-area{
    padding: 30px 50px 25px 50px;
}

.contact-section .contact-form-box .contact-form-area .form-control{
    border: none;
    border-bottom: #9b908a 1px solid;
}

.contact-section .contact-form-box .contact-form-area .btn{
    background-color: #031033;
    font-size: 1.1em;
    font-weight: 600;
    padding: 8px 35px;
    border-radius: 10px;
}

.contact-section .contact-form-box .contact-form-area .btn:hover{
    background-color: #000;
}

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////step Page///////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.step-section{
    padding: 4em 0;
    background-color: #031032;
}

.step-section .section-heading p{
    color: #FFFFFF;
}

.step-1, .step-2, .step-3, .step-4, .step-5, .step-6{
    position: relative;
    overflow: hidden;
}

.step-1:after{
    content: "01";
    position: absolute;
    font-size: 7em;
    font-weight: 900;
    color: #031032;
    bottom: -65px;
    right: 20px;
}

.step-2:after{
    content: "02";
    position: absolute;
    font-size: 7em;
    font-weight: 900;
    color: #031032;
    bottom: -65px;
    right: 20px;
}

.step-3:after{
    content: "03";
    position: absolute;
    font-size: 7em;
    font-weight: 900;
    color: #031032;
    bottom: -65px;
    right: 20px;
}

.step-4:after{
    content: "04";
    position: absolute;
    font-size: 7em;
    font-weight: 900;
    color: #031032;
    bottom: -65px;
    right: 20px;
}

.step-5:after{
    content: "05";
    position: absolute;
    font-size: 7em;
    font-weight: 900;
    color: #031032;
    bottom: -65px;
    right: 20px;
}

.step-6:after{
    content: "06";
    position: absolute;
    font-size: 7em;
    font-weight: 900;
    color: #031032;
    bottom: -65px;
    right: 20px;
}

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////Career Page///////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.career-section{
    padding: 4em 0;
}

.career-section .career-heading{
    padding: 2em 0;
}

.career-section .career-heading h1{
    font-size: 2em;
    font-weight: 600;
    width: 80%;
}

.career-section .career-heading h2{
    font-size: 2em;
    font-weight: 500;
    color: #9b908a;
    margin: 1em 0;
    width: 80%;
}

.career-section .career-heading p{
    font-size: 1em;
    font-weight: 600;
    color: #031032;
}

.career-section .career-form{
    background-color: #031033;
    padding: 2em;
    border-radius: 15px;
}

.career-section .career-form h4{
    color: #fff;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 1em;
}

.career-section .career-form .form-inputs{
    display: flex;
    flex-direction: row;
    border-bottom: #9b908a 1px solid;
    padding:10px 0 0 0 ;
}

.career-section .career-form .form-inputs:nth-last-child(1){
    border: none;
}

.career-section .career-form .form-inputs label{
    width:235px;
    color: #fff;
    font-weight: 600;
}

.career-section .career-form .form-inputs input{
    background: transparent;
    border: none;
    color: #ffffff;
}

.career-section .career-form .form-inputs input[type=file]::file-selector-button {
    display: none;
}

.career-section .career-form .form-inputs .resume-btn{
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 10px;
    background-color: #9b908a;
    color: #031032;
    /* width: fit-content; */
}

.career-section .career-form .form-inputs .resume-btn:hover{
    background-color: #d7d7d7;
}

.testimonial .section-heading p{
    color: #ffffff;
}

.testimonial .testimonial-item p{
    min-height: 170px;
}