/********** Template CSS **********/
:root {
    --primary: #2124B1;
    --secondary: #4777F5;
    --light: #F7FAFF;
    --dark: #1D1D27;
}


/*** 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;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.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: 50px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--secondary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Hero Header ***/
.hero-header {
    background:
        url(../img/bg-dot.png),
        url(../img/bg-dot.png),
        url(../img/bg-round.png),
        url(../img/bg-tree.png),
        url(../img/bg-bottom-hero.png);
    background-position:
        10px 10px,
        bottom 190px right 10px,
        left 55% top -1px,
        left 45% bottom -1px,
        center bottom -1px;
    background-repeat: no-repeat;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** Service ***/
.service-item {
    position: relative;
    height: 350px;
    padding: 30px 25px;
    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 20px auto;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/icon-shape-primary.png) center center no-repeat;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--primary);
    background: url(../img/icon-shape-white.png);
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--light);
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: #DDDDDD;
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Testimonial ***/
.newsletter,
.testimonial {
    background:
        url(../img/bg-top.png),
        url(../img/bg-bottom.png);
    background-position:
        left top,
        right bottom;
    background-repeat: no-repeat;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--light) !important;
    border-color: var(--light);
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #888888;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item h6 {
    color: var(--dark) !important;
}


/*** Team ***/
.team-item {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.team-item::after {
    position: absolute;
    content: "";
    top: 3rem;
    right: 3rem;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    background: var(--primary);
}

.team-item h5,
.team-item small {
    transition: .5s;
}

.team-item:hover h5,
.team-item:hover small {
    color: var(--light);
}


/*** Project Portfolio ***/
#portfolio-flters .btn {
    position: relative;
    display: inline-block;
    margin: 10px 4px 0 4px;
    transition: .5s;
}

#portfolio-flters .btn::after {
    position: absolute;
    content: "";
    right: -1px;
    bottom: -1px;
    border-left: 20px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 50px solid #FFFFFF;
}

#portfolio-flters .btn:hover,
#portfolio-flters .btn.active {
    color: var(--light);
    background: var(--primary);
}

.portfolio-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: var(--primary);
    transition: .5s;
    z-index: 1;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item .btn {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/icon-shape-white.png) center center no-repeat;
    border: none;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}

.portfolio-item:hover .btn {
    opacity: 1;
    transition-delay: .15s;
}






/** testimonial section **/



/** end testimonial section **/


/** contact section **/

.contact {
  background: url('/img/images/contact.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0px 0 90px 0;
  position: relative;
  background: inherit;
}

.contact::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: url('/img/con_cross.png');
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}

.contact .titlepage {
  text-align: left;
  padding-bottom: 107px;
}

.contact .titlepage h2 {
  color: #02246a;
}

.main_form {
  margin-right: -32px;
}

.main_form .contactus {
  border: #02246a solid 1px;
  margin-bottom: 25px;
  width: 100%;
  height: 47px;
  background: transparent;
  color: #dfdfdf;
  font-size: 18px;
  font-weight: normal;
  border-right: inherit;
  border-left: inherit;
  border-top: inherit;
}

.main_form .contactus1 {
  border: #02246a solid 1px;
  margin-bottom: 25px;
  width: 100%;
  height: 47px;
  background: transparent;
  color: #dfdfdf;
  font-size: 18px;
  font-weight: normal;
  border-right: inherit;
  border-left: inherit;
  border-top: inherit;
  margin-top: 60px;
}

.main_form .send_btn {
  font-size: 22px;
  transition: ease-in all 0.5s;
  background-color: #ffca56;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 0px;
  max-width: 195px;
  width: 100%;
  display: block;
  margin-top: 30px !important;
  font-weight: 500;
}

.main_form .send_btn:hover {
  background-color: #02246a;
  transition: ease-in all 0.5s;
  color: #fff;
}

#request *::placeholder {
  color: #000000;
  opacity: 1;
}

.map figure {
  margin: 0;
}

.map figure img {
  width: 100%;
}


/** end contact section **/



/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    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: 14px;
    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, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}






 

 
.text-primary {
  color: #FFAA17 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #ca8000 !important;
}

.text-secondary {
  color: #BDBDBF !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #969699 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #F4F5F8 !important;
}

a.text-light:hover, a.text-light:focus {
  color: #c5cbda !important;
}

.text-dark {
  color: #222429 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: black !important;
}

.text-body {
  color: #686A6F !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}





.slider_section {
    height: calc(100% - 80px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 2;
    color: #3b3a3a;
  }
  
  .slider_section .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .slider_section div#carouselExampleIndicators {
    width: 100%;
    position: unset;
  }
  
  .slider_section .detail_box {
    color: #ffffff;
  }
  
  .slider_section .detail_box h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 30px;
  }
  
  .slider_section .detail_box .btn-box {
    margin: 30px -5px 0 -5px;
  }
  
  .slider_section .detail_box .btn-box a {
    width: 145px;
    text-align: center;
    margin: 5px;
  }
  
  .slider_section .detail_box .btn-box a.btn-1 {
    display: inline-block;
    padding: 8px 0;
    background-color: #d8bf36;
    color: #ffffff;
    border-radius: 30px;
  }
  
  .slider_section .detail_box .btn-box a.btn-1:hover {
    background-color: #e0cd61;
  }
  
  .slider_section .detail_box .btn-box a.btn-2 {
    display: inline-block;
    padding: 8px 0;
    background-color: #ffffff;
    color: #000000;
    border-radius: 30px;
  }
  
  .slider_section .detail_box .btn-box a.btn-2:hover {
    background-color: white;
  }
  
  .slider_section .img-box img {
    width: 100%;
  }
  
  .slider_section .slider_number-container {
    position: absolute;
    top: 8%;
    left: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .slider_section .carousel_btn-container {
    width: 95px;
    position: absolute;
    bottom: 9%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    right: 50%;
    z-index: 999;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  
  .slider_section .carousel_btn-container .carousel-control-prev,
  .slider_section .carousel_btn-container .carousel-control-next {
    position: relative;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 100%;
    opacity: 1;
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center;
    background-color: #d8bf36;
  }
  
  .slider_section .carousel_btn-container .carousel-control-prev:hover,
  .slider_section .carousel_btn-container .carousel-control-next:hover {
    background-color: #041858;
  }
  
  .slider_section .carousel_btn-container .carousel-control-prev {
    background-image: url('images/left-angle.png');
  }
  
  .slider_section .carousel_btn-container .carousel-control-next {
    background-image: url('images/right-angle.png');
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  
  .about_section .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .about_section .img-box img {
    max-width: 100%;
  }
  
  .about_section .detail-box p {
    margin-top: 25px;
  }
  
  .about_section .detail-box a {
    display: inline-block;
    padding: 10px 35px;
    background-color: #d8bf36;
    color: #ffffff;
    border-radius: 30px;
    margin: 25px 0 45px 0;
  }
  
  .about_section .detail-box a:hover {
    background-color: #e0cd61;
  }
  
  .service_section {
    background-color: #041858;
    color: #ffffff;
    text-align: center;
  }
  
  .service_section .heading_container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .service_section .service_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 35px 60px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  
  .service_section .service_container .box {
    margin: 25px 10px;
    min-width: 200px;
    width: 250px;
  }
  
  .service_section .service_container .box .img-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 200px;
    background-color: #ffffff;
    border-radius: 15px;
  }
  
  .service_section .service_container .box .img-box img {
    width: 75px;
  }
  
  .service_section .service_container .box .detail-box {
    margin-top: 15px;
  }
  
  .service_section .service_container .box .detail-box h5 {
    font-weight: bold;
    position: relative;
  }
  
  .service_section .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .service_section .btn-box a {
    display: inline-block;
    padding: 10px 35px;
    background-color: #d8bf36;
    color: #ffffff;
    border-radius: 30px;
  }
  
  .service_section .btn-box a:hover {
    background-color: #e0cd61;
  }
  
  .work_section .heading_container {
    margin-bottom: 45px;
  }
  
  .work_section .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .work_section .detail_container .box {
    margin-bottom: 20px;
    padding: 20px;
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
  }
  
  .work_section .detail_container .box .top-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .work_section .detail_container .box .top-box .icon-box {
    width: 50px;
    margin-right: 15px;
  }
  
  .work_section .detail_container .box .top-box .icon-box img {
    width: 100%;
  }
  
  .work_section .detail_container .box .top-box h5 {
    font-weight: 600;
    margin: 0;
  }
  
  .work_section .detail_container .box .bottom-box {
    margin-top: 10px;
  }
  
  .work_section .img-box img {
    max-width: 100%;
  }
  
  .work_section .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .work_section .btn-box a {
    display: inline-block;
    padding: 10px 25px;
    background-color: #d8bf36;
    color: #ffffff;
    border-radius: 30px;
  }
  
  .work_section .btn-box a:hover {
    background-color: #e0cd61;
  }
  
  .team_section {
    text-align: center;
  }
  
  .team_section .heading_container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .team_section .team_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 25px 65px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  
  .team_section .team_container .box {
    margin: 35px 45px;
    min-width: 200px;
    width: 250px;
  }
  
  .team_section .team_container .box .img-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 15px;
    position: relative;
  }
  
  .team_section .team_container .box .img-box img {
    width: 100%;
  }
  
  .team_section .team_container .box .img-box::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    width: 120%;
    height: 75%;
    border-radius: 25px;
    -webkit-transform: translateX(-52.5%) rotate(-15deg);
            transform: translateX(-52.5%) rotate(-15deg);
    background-color: #041858;
  }
  
  .team_section .team_container .box .detail-box {
    margin-top: 15px;
  }
  
  .team_section .team_container .box .detail-box h5 {
    font-weight: bold;
    position: relative;
  }
  
  .team_section .team_container .box.b-2 {
    margin-top: 130px;
  }
  
  .team_section .team_container .box.b-3 {
    margin-top: 230px;
  }
  
  .team_section .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .team_section .btn-box a {
    display: inline-block;
    padding: 10px 35px;
    background-color: #d8bf36;
    color: #ffffff;
    border-radius: 30px;
  }
  
  .team_section .btn-box a:hover {
    background-color: #e0cd61;
  }
  
  .client_section .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 45px;
  }
  
  .client_section .box .img-box img {
    max-width: 100%;
  }
  
  .client_section .box .detail-box {
    margin-top: 20px;
  }
  
  .client_section .box .detail-box h6 {
    font-size: 18px;
    font-weight: bold;
  }
  
  .client_section .carousel_btn-container {
    width: 100px;
    position: absolute;
    bottom: -50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    right: 15%;
    z-index: 999;
  }
  
  .client_section .carousel_btn-container .carousel-control-prev,
  .client_section .carousel_btn-container .carousel-control-next {
    position: relative;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 100%;
    opacity: 1;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    background-color: #d8bf36;
  }
  
  .client_section .carousel_btn-container .carousel-control-prev:hover,
  .client_section .carousel_btn-container .carousel-control-next:hover {
    background-color: #041858;
  }
  
  .client_section .carousel_btn-container .carousel-control-prev {
    background-image: url('images/prev-white.png');
  }
  
  .client_section .carousel_btn-container .carousel-control-next {
    background-image: url('images/next-white.png');
  }
  
  .footer_bg {
    background-image: url('images/footer-bg.png');
    background-size: cover;
    background-position: right top;
    padding-top: 250px;
  }
  
  .contact_section {
    color: #ffffff;
  }
  
  .contact_section .heading_container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 45px;
  }
  
  .contact_section form .form-control {
    border: none;
    background-color: #ffffff;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 30px;
    padding-left: 20px;
    height: 45px;
    margin: 5px 0;
  }
  
  .contact_section button {
    display: inline-block;
    padding: 8px 35px;
    background-color: #d8bf36;
    color: #ffffff;
    border-radius: 30px;
    text-transform: uppercase;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none;
    margin-top: 15px;
    font-size: 15px;
  }
  
  .contact_section button:hover {
    background-color: #e0cd61;
  }
  
  .info_section {
    color: #ffffff;
  }
  
  .info_section p {
    color: #9c9c9c;
  }
  
  .info_section .info_logo h3 {
    text-transform: uppercase;
    font-weight: bold;
  }
  
  .info_section h5 {
    margin-bottom: 25px;
    font-size: 24px;
  }
  
  .info_section .info_contact .img-box {
    width: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .info_section .info_contact p {
    margin: 0;
  }
  
  .info_section .info_contact a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 20px 0;
  }
  
  .info_section .info_contact a p {
    color: #9c9c9c;
  }
  
  .info_section .info_contact a:hover p {
    color: #ffffff;
  }
  
  .info_section .info_contact a img {
    height: auto;
    margin-right: 12px;
  }
  
  .info_section .info_links ul {
    padding-left: 15px;
  }
  
  .info_section .info_links ul li {
    list-style-type: none;
    margin: 5px 0;
  }
  
  .info_section .info_links ul li a {
    color: #9c9c9c;
    position: relative;
  }
  
  .info_section .info_links ul li a::before {
    display: none;
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: #d8bf36;
  }
  
  .info_section .info_links ul li a:hover {
    color: #ffffff;
  }
  
  .info_section .info_links ul li.active a {
    color: #ffffff;
  }
  
  .info_section .info_links ul li.active a::before {
    display: block;
  }
  
  .info_section .info_form form {
    margin-top: 20px;
  }
  
  .info_section .info_form form input {
    border: 1px solid #a6adc4;
    background-color: transparent;
    outline: none;
    width: 100%;
    padding: 7px 10px;
    color: #ffffff;
  }
  
  .info_section .info_form form input::-webkit-input-placeholder {
    color: #9c9c9c;
  }
  
  .info_section .info_form form input:-ms-input-placeholder {
    color: #9c9c9c;
  }
  
  .info_section .info_form form input::-ms-input-placeholder {
    color: #9c9c9c;
  }
  
  .info_section .info_form form input::placeholder {
    color: #9c9c9c;
  }
  
  .info_section .info_form form button {
    display: inline-block;
    padding: 8px 30px;
    background-color: #d8bf36;
    color: #ffffff;
    border-radius: 5px;
    margin-top: 15px;
    text-transform: uppercase;
    font-size: 15px;
    border: none;
    width: 100%;
  }
  
  .info_section .info_form form button:hover {
    background-color: #e0cd61;
  }
  
  .info_section .info_form .social_box {
    margin-top: 35px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .info_section .info_form .social_box a {
    margin-right: 25px;
  }
  


  .footer {
     background: #02246a;
     padding-top: 115px;
     text-align: center;
}

.footer .titlepage {
     text-align: left;
     padding-bottom: 0px;
}

.footer .titlepage h2 {
     color: #fff;
     margin: inherit;
     border-bottom: #fff solid 1px;
}

.logo1 {
     float: left;
     margin-top: -11px;
     margin-bottom: 9px;
}

ul.social_icon {
     padding-top: 14px;
     width: 100%;
     float: left;
     text-align: left;
}

ul.social_icon li {
     display: inline-block;
}

ul.social_icon li a {
     background: #fff;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 25px;
     border-radius: 30px;
     margin: 0 3px;
     color: #02246a;
}

ul.social_icon li a:hover {
     background-color: #fff;
     color: #fec955;
}

.footer h3 {
     font-weight: 600;
     font-size: 25px;
     line-height: 24px;
     text-align: left;
     color: #fff;
     margin-bottom: 15px;
     border-bottom: #ffca56 solid 3px;
     padding-bottom: 3px;
     display: table;
}

.about_us li {
     color: #fff;
     font-size: 17px;
     text-align: left;
     display: inline-block;
}

ul.link_menu li {
     display: block;
     text-align: left;
}

ul.link_menu li a {
     color: #fff;
     font-size: 17px;
     line-height: 28px;
     padding-bottom: 10px;
     display: block;
     width: -moz-max-content;
}

ul.link_menu li a:hover {
     color: #ffca56;
}

.bottom_form {
     display: flex;
     flex-wrap: wrap;
     margin-top: 32px;
}

.bottom_form h3 {
     font-weight: 600;
     font-size: 20px;
     line-height: 25px;
     text-align: left;
     color: #fff;
     padding-top: 12px;
     margin-right: 93px;
     text-transform: uppercase;
     border: inherit;
}

.bottom_form .enter {
     border: inherit;
     padding: 0px 19px;
     width: 45%;
     height: 45px;
     background: #fffffff2;
     color: #ccc8c8;
     font-size: 17px;
     font-weight: 300;
     float: left;
     border-radius: 10px;
     margin-bottom: 20px;
}

.sub_btn {
     font-size: 17px;
     transition: ease-in all 0.5s;
     background-color: #ffca56;
     color: #fff;
     padding: 8px 0px;
     max-width: 163px;
     border-radius: 10px;
     width: 100%;
     font-weight: 500;
     text-transform: uppercase;
     margin-left: 7px;
     height: 46px;
}

.sub_btn:hover {
     background-color: #000;
     transition: ease-in all 0.5s;
     color: #fff;
}

.copyright {
     margin-top: 80px;
     padding-bottom: 20px;
}

.copyright p {
     color: #ddd;
     font-size: 18px;
     line-height: 22px;
     text-align: center;
     border-top: #a3aec6 solid 1px;
     padding-top: 25px;
     font-weight: normal;
}

.copyright a {
     color: #ddd;
}

.copyright a:hover {
     color: #ffca56;
}


/** end footer **/


/** inner page css **/

.inner_header .header {
     background: #02246a;
     position: inherit;
}

.yellow_darkbg .titlepage {
     padding-bottom: 0;
}

.yellow_darkbg {
     background: #f8c659;
     display: flex;
     justify-content: center;
     align-items: center;
     height: 122px;
}

.about_page .team {
     padding-bottom: 90px;
}

.about_page .team .titlepage h3 {
     color: #02246a;
}

.about_page .team .titlepage p {
     float: left;
}

.contact_page .contact {
     padding-top: 160px;
     margin-top: 90px;
}

.service_page .services {
     padding-bottom: 60px;
}

.blog {
     margin: 90px 0px 60px 0px;
}

.blog .blog_box {
     margin-bottom: 30px;
}

.blog .blog_box h3 {
     text-align: center;
     font-weight: 600;
     font-size: 30px;
     line-height: 30px;
     padding: 30px 0px 40px 0px;
     color: #02246a;
}

.blog .blog_box figure {
     margin: 0;
}

.blog .blog_box figure img {
     width: 100%;
     height: 320px;
}

.blog .blog_box .read_more {
     margin: 0 auto;
     display: block;
}
