html {
    overflow-x: hidden;
}

/* =================scroll top css start here================ */

/* ===== Scrollbar CSS ===== */

/* Firefox */

* {
    scrollbar-width: auto;
    scrollbar-color: #892E11 #f2f2f2;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 4px;
}
*::-webkit-scrollbar-track {
    background: #ffbc00;
}
*::-webkit-scrollbar-thumb {
    background-color: #0072ff;
    border-radius: 0px;
}

body {
    background: #fff;
    font-family: 'Inter';
    -webkit-font-smoothing: antialiased;
}


h1,
h2,
h3,
h4,
h6 {
    font-family: 'Oswald';
    font-weight: 500;
}

.form-control {
    background: transparent;
    border: 0px;
    box-shadow: none;
    outline: none;
    border-radius: 0px;
}

.form-control:focus {
    background: transparent;
    border: 0px;
    box-shadow: none;
    outline: none;
}

*:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    outline: none;
}

select::-ms-expand {
 display: none;
}

a, a:hover, button, button:hover, a:focus, button:focus {
    text-decoration: none !important;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    outline: none;
}
img {
    margin: 0;
    padding: 0;
    border: none;
    max-width: 100%;
    height: auto;
}
iframe{ width: 100%; }
.ptb{padding:50px 0;}
.pt{padding-top:50px;}
.pb{padding-bottom:50px;}

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

/* Header */

.main-menu-more {
    display: none;
}
.bd_head {
    position:fixed;
/*    background:#ffffffe6;*/
    z-index:9;
    top: 0;
    left: 0;
    width: 100%;
}
.bd_innerhead.header-appear-index {
    background: #ffffffe6;
}
.bd_logo {
    width: 80px;
}
.headrgt {
    display: flex;
    align-items: center;
}

.headrgt .bd_btn {
    margin-right: 20px;
}
.home .headrgt a.bd_btn {
    color: #fff;
    border-color: #fff;
}

.bd_sidemenu {
    display: block;
    background-size: cover;
    height: 100vh;
    position: fixed;
    left: -100%;
    top: 0;
    padding:100px 50px 50px 50px;
    transition: all .5s;
    width: 100%;
    z-index: 9;
    border-left: 1px solid #fff;
    background: #ffffffab;
    backdrop-filter: blur(10px);
    overflow-y: scroll;
}
.bd_sidemenu .mega-menu-wrap {
    max-width: 300px !important;
    margin: 0 auto !important;
}

.bd_sidemenu.active {
    left: 0;
}

.bd_sidemenu .menu li + li {
    margin-top: 12px;
}
.bd_sidemenu .menu li{
    position: relative;
}
.bd_sidemenu .menu li button.submenu-expand{
    position: absolute;
    top: 4px;
    right: 0;
    border: 0;
    background: transparent;
}

.bd_sidemenu .menu li a {
    font-size: 26px;
    line-height: 36px;
    font-weight: 500;
    color: #005488;
}

.bd_sidemenu .menu li.current-menu-item a {
    color: #000;
}
.bd_sidemenu .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bd_sidemenu .menu li .sub-menu .mobile-parent-nav-menu-item{
    display: none;
}
.bd_sidemenu .menu li .sub-menu {
    list-style-type: none;
    padding: 0 0 0 15px;
    display: none;
}
.bd_sidemenu .menu li button.submenu-expand.active svg {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
}

.bd_sidemenu .menu li .sub-menu li a {
    font-size: 20px;
    line-height: 26px;
}
.bd_sidemenu .menu li .sub-menu.expanded-true {
    display: block;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu .mobile-parent-nav-menu-item{
    display: none;
}

/* Toggle*/

.bd_toggle {
    border: 0;
    background: #000;
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
}

.bd_toggle.navbar-toggler:focus {
    outline: 0;
}

.bd_toggle span {
    width: 20px;
    height: 4px;
    background: #ffffff;
    display: inherit;
    position: relative;
    margin: 0;
    background-image: none !important;
}

.bd_toggle span:after {
    position: absolute;
    content: " ";
    width: 20px;
    height: 4px;
    top: -7px;
    left: 0;
    right: 0;
    background: #ffffff;
    transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.bd_toggle span:before {
    position: absolute;
    content: " ";
    width: 20px;
    height:4px;
    bottom: -7px;
    left: 0;
    right: 0;
    background: #ffffff;
    transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.bd_toggle.closebar span {
    background: transparent;
}

.bd_toggle.closebar span::before {
    transform: rotate(45deg);
    transition: all .4s;
    width: 22px;
    bottom: 0;
}

.bd_toggle.closebar span::after {
    transform: rotate(-45deg);
    transition: all .4s;
    top: 0;
}

.bd_btn {
    font-family: 'Oswald';
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #0063b4;
    border: 2px solid #005488;
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-block;
}
.bd_btn:hover{
    background: #005488;
    color:#fff;
}


/*Banner*/

.bd_banner {
    position: relative;
    background: #fff;
    /*background: url(../images/bg.png) no-repeat top center;
    background-size: cover;*/
    padding: 0px 0 100px 0;
    text-align: center;
}
.bd_banner:after {
    position: absolute;
    content: " ";
    background: #00548863;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
}
.bd_banner h2 {
    font-size: 80px;
    line-height: 60px;
    text-transform: uppercase;
    font-family: 'Oswald';
/*    font-weight: normal;*/
    color:#fff;
    text-shadow: 2px 2px 4px black;
}
.bd_banner h2 strong{
    font-size: 40px; line-height: 50px;
    font-weight: normal;
}

.bd_banner h3, .bd_banner h3 a{
    color:#fff;
}
.bannerimg {
    height: 650px;
}
.bannerimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.btnarea {
    display: flex;
    justify-content: center;
    margin: 20px 0 0 0;
}
.btnarea a.bd_btn{
    margin-left:10px;
    background: #fff;
    border-color: #fff;
}
.btnarea a.bd_btn:hover {
    background: #005488;
    border-color: #005488;
}

.bd_bannerinnbox{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    z-index: 1;
}


/*Home Page*/


.bd_aboutsec{
    position: relative;
}
.bd_aboutsec:before{
    position: absolute;
    content: "";
    background: url(../images/bg1.png) top center no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
}
.bd_servisbox{
    background: #e2f1ff;
}
.bd_servissec{
    position: relative;    
    padding: 210px 0;
    margin-top: -50px;
}
.bd_servissec:before{
    position: absolute;
    content: "";
    background: url(../images/bg2.png) top center no-repeat;
    background-size: cover;
    top:0;
    left: 0;
    width: 100%;
    height: 210px;
}

.bd_servissec:after{
    position: absolute;
    content: "";
    background: url(../images/bg2.png) top center no-repeat;
    background-size: cover;
    bottom:0;
    left:0;   
    width: 100%;
    height: 210px;
    transform: rotateX(-180deg);
    -webkit-transform: rotateX(-180deg);
    -o-transform: rotateX(-180deg);
    -ms-transform: rotateX(-180deg);
    -moz-transform: rotateX(-180deg);
}

.bd_servicearea {
    background: #fff;
    box-shadow: 0 0 10px 0 #415db566;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.serimg {
    width: 100px;
    margin: auto;
    height: 80px;
    margin-bottom: 20px;
}

.serimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.serinfo a {
    text-transform: uppercase;
    color: #0c2b85;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}
.serinfo h2 {
    color: #000000;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 10px;
    font-weight: 500;
}

.bd_serviceaec:nth-child(1), .bd_serviceaec:nth-child(3) {
    margin-top: -70px;
    z-index: 1;
}

/* Footer Css */

.bd_ftr {
    padding: 60px 0 0 0;
}
.bd_ftr{display: none;}
.bd_innerftr{display: block;}

.bd_innerftr {
    background: #f7fcff;
}
.ftrbox {
    padding-right: 40px;
}

.ftrbox a {
    width: 250px;
    display: block;
    margin-bottom: 20px;
}

.ftrbox p {
    font-size: 14px;
    line-height: 22px;
    color: #000;
    margin: 0;
}

.bd_ftronebox h2{
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    color: #0c2b85;
    margin-bottom: 30px;
}

.bd_ftronebox .menu {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.bd_ftronebox .menu li {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 8px;
}

.bd_ftronebox .menu li a {
    font-size: 15px;
    line-height: 20px;
    color: #1f1f1f;
}
.bd_ftronebox .menu li a:hover,
.ftrinfo li a:hover
{
    color:#0c2b85;
}
.ftrinfo li+li {
    margin-top: 8px;
}

.ftrinfo {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ftrinfo li {
    position: relative;
    padding-left:38px;
}
.ftrinfo li strong {
    display: block;
}

.ftrinfo li a {
    font-size: 15px;
    line-height: 20px;
    color: #333E48;
    font-weight: 400;
}

.ftrinfo li img {
    position: absolute;
    top:0;
    left: 0;
}
.ftrsocial a {
    color: #333E48;
}

.ftrsocial a+a {
    margin-left: 10px;
}

.ftrsocial a:hover {
    color: #3DCC93;
}

.bd_copy {
    padding: 20px 0;
    margin-top: 50px;
    background: #eeeeee;
}
.bd_copy p {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.bd_copy p, .bd_copy p a {
    margin: 0;
    font-size: 13px;
    line-height: 20px;
    color: #242b2f;
    font-weight:600;
    text-transform: capitalize;
}
.bd_copy p a{
    color:#0c2b85;
}

/*Form*/

.coninfo {
    padding: 50px;
    background-attachment: fixed !important;
    position: relative;
    box-shadow: 0 0 10px 0 #e3e3e3;
}
.coninfo:after{
    position: absolute;
    content: "";
/*    background: rgba(0, 0, 0, 0.3);*/
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.coninfo ul {
    list-style-type: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.coninfo ul li+li {
    margin-top: 12px;
}

.coninfo ul li a {
    color: #005488;
}

.coninfo ul li a i {
    width: 30px;
    background: #005488;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 5px;
    margin-right: 10px;
    color: #ffffff;
}
.coninfo h2 {
    color: #005488;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 32px;
    line-height: 38px;
}

.contact_form1{
    box-shadow: 0 0 10px 0 #e3e3e3;
    padding: 50px;
}
.contact_form1 label {
    color: #000;
    display: block;
    margin-bottom: 10px;
}
.check_label{
    margin-left: 10px;
    display: inline-block !important;
    margin-bottom: 0 !important;
}
.contact_form1 .wpcf7-form-control::placeholder {
  color: #000;
}

.contact_form1 .wpcf7-form-control, .contact_form1 .wpcf7-form-control:-internal-autofill-selected{
    width: 100%;
    background-color: transparent;
    border:1px solid #fff;
    border-radius:0;
    color: #fff;
    transition: 0.5s;
    position: relative;
}

.contact_form1 input[type="text"], 
.contact_form1 input[type="text"]:focus, 
.contact_form1 input[type="email"], 
.contact_form1 input[type="email"]:focus, 
.contact_form1 input[type="tel"], 
.contact_form1 input[type="tel"]:focus,
.contact_form1 input[type="date"], 
.contact_form1 input[type="date"]:focus,
.contact_form1 textarea,
.contact_form1 select, .contact_form1 select:focus
{
    width: 100%;
    padding: 0 15px;
    background-color: transparent;
    border: 1px solid #c5c5c5;
    color: #000;
    transition: 0.5s;
    position: relative;
    border-radius: 5px;
    font-size: 13px;
    box-shadow: none;
}
.contact_form1 .wpcf7-form-control-wrap{display: block;}

.contact_form1 input[type="file"], 
.contact_form1 input[type="file"]:focus{
    border: 1px solid #00569d;
    background: #fff;
    padding: 10px;
    border-radius: 50px;
}

.contact_form1 .wpcf7-form-control:focus{
    border-color: #00569d !important;
}

.contact_form1 .wpcf7-text, .contact_form1 .wpcf7-date, .contact_form1 .wpcf7-select  {
    height: 40px;
}

.contact_form1 .wpcf7-text, .contact_form1 .wpcf7-radio{
    border:0;
    padding: 0;
}

.contact_form1 .wpcf7-text, .contact_form1 .wpcf7-radio span.wpcf7-list-item:nth-child(1){
    margin-left: 0;
}

.contact_form1 .wpcf7-radio span.wpcf7-list-item label{
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.contact_form1 .wpcf7-radio span.wpcf7-list-item label input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.contact_form1 .wpcf7-radio span.wpcf7-list-item label span.wpcf7-list-item-label:before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid red;
  border-radius:50px;
}
.contact_form1 .wpcf7-radio span.wpcf7-list-item label input[type=radio] ~ span.wpcf7-list-item-label{
  font-size: 13px;
  color: #000;
}
.contact_form1 .wpcf7-radio span.wpcf7-list-item label input[type=radio]:checked ~ span.wpcf7-list-item-label:before{
  background-color: #fff;
}
.contact_form1 .wpcf7-radio span.wpcf7-list-item label span.wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  display: none;
}

.contact_form1 .wpcf7-radio span.wpcf7-list-item label input[type=radio]:checked ~ span.wpcf7-list-item-label:after{
  display: block;
}

.contact_form1 .wpcf7-radio span.wpcf7-list-item label span.wpcf7-list-item-label:after{
    left: 10px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid #1682ee;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.contact_form1 .wpcf7-textarea {
    height: 100px;
    padding-top: 15px;
    background-color: transparent;
    border: 1px solid #c5c5c5;
    color: #000;
    border-radius: 5px;
}
.contact_form1 textarea:focus-visible{outline: none;}
.contact_form1 .wpcf7-submit {
    height: 45px;
    padding: 0 30px;
    background: #0c2b85;
    color: #fff;
    font-size: 15px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 0;
    border: 0;
    text-transform: capitalize;
    display: inline-block;
    width: auto;
}

.contact_form1 .wpcf7-submit:hover{
    background: #000;
    color: #fff;
}

.contact_form1 .bd_consub{position: relative; margin: 0 0 0 -15px;}

.contact_form1 .bd_consub .ajax-loader {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.captcha-image {
    border-color: #000;
    color: #000;
    border-radius:20px;
    padding: 20px !important;
}

.con_map{
    height: 100%;
}
.con_map iframe{
    height: 100%;
    width: 100%;
}

.coninfo ul li a span {
    font-size: 12px;
    line-height: 18px;
    color: #000;
}

/*Inner Banner*/

.inner_banner{
    height: 550px;
    /*background: url(../images/bg.png) no-repeat top center;
    background-size: cover;*/
    padding: 180px 0 0 0;
}
.inner_bannerinfo h1 {
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 2px 2px 4px black;
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    position: relative;
    margin-bottom: 0;
}


/* Inner Page */
.breadcrumb {
    background: transparent;
    margin-bottom:10px;
    padding: 0;
}
.breadcrumb ul{
    list-style-type: none;
    margin-bottom: 0;
    display: flex;
    padding: 8px 10px;
    background:#1c1c1d;
    border-radius: 4px;
}
.breadcrumb ul li{
    display: inline-block;
    margin: 0 5px;
    color: #ffffff;
    font-size: 12px;
    line-height: 16px;
}
.breadcrumb ul li:nth-child(1){
    margin-left:0;
}
.breadcrumb ul li.item-current {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.breadcrumb ul li a, .breadcrumb ul li strong{
    font-weight: 500;
    line-height: 16px;
    color: #ffffff;
    font-size: 12px;
}
.breadcrumb ul li strong{color: #ffb528;}
.breadcrumb ul li a:hover {
    color: #fdb621;
}

/* Inner Content */

.inner_con{
    color: #000;
    font-size:16px; line-height:20px;
}
.inner_con .alignright{
    float: right;
    margin: 20px 0 20px 20px;
    filter: drop-shadow(5px 5px 5px #222);
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    -moz-filter: drop-shadow(5px 5px 5px #222);
    -ms-filter: drop-shadow(5px 5px 5px #222); 
}
.inner_con .alignleft{
    float: left;
    margin: 20px 20px 20px 0;
    filter: drop-shadow(-5px 5px 5px #222);
    -webkit-filter: drop-shadow(-5px 5px 5px #222);
    -moz-filter: drop-shadow(-5px 5px 5px #222);
    -ms-filter: drop-shadow(-5px 5px 5px #222);
}
.inner_con h2{
    color: #0063b4;
    font-family: 'Oswald';
    font-weight: normal;
    font-size: 40px;
    line-height: 48px;
    position: relative;
    margin-bottom:20px;
    text-transform: uppercase;
}
.inner_con h3{
    color: #000;
    font-size: 26px;
    line-height: 30px;
    margin-bottom:15px;
}
.inner_con h4{
    color: #000;
    font-size: 22px;
    line-height: 26px;
    margin-bottom:15px;
}
.inner_con ul{
    padding-left: 0;
    list-style-type: none;
}
.inner_con ul li{
    position: relative;
    margin: 10px 0;
    padding-left: 25px;
    color: #000;
    font-size: 15px;
    line-height: 20px;
}
.inner_con ul li:after{
    position: absolute;
    content: "\f046";
    color: #0b6a82;
    font: normal normal normal 14px FontAwesome;
    top: 2px;
    left: 0;
}
.inner_con h6{
    font-size: 16px;
    line-height: 20px;
}
.inner_con p{
    color: #1f1f1f;
    font-size: 16px;
    line-height: 26px;
}

/* 404 */

.error-404 {
    color: #000;
}
.error-404 h1 {
    font-size: 100px;
    font-weight: 900;
    line-height: 104px;
    letter-spacing: -15px;
    -webkit-text-stroke: 1px #f9ca70;
    color: transparent;
}

.error-404 a {
    background: #f9ca70;
    display: inline-block;
    padding: 10px 20px;
    color: #7f0029;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}
.wpcf7-not-valid-tip{font-size: 12px !important; line-height: 16px;}

div.wpcf7-mail-sent-ok{
    background: #398f14;
    color: #fff;
    text-align: center;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing{
    background: #f7e700;
    color: #252525;
    text-align: center;
}

/* comment-respond */
.comments-area{
	flex:0 0 100% !important; 
	max-width: 100% !important;
}
.error {
    color: red;
    font-size: 12px;
}
.comment-form p label .required {
    color: red;
}
.comments-area{
    margin-top: 40px;
}
.comment-respond .comment-reply-title{
    font-size: 26px;
    line-height: 30px;
    color: #252525;
    margin-bottom: 15px;
}
.comments-area .comments-title{
    font-size: 20px;
    line-height: 26px;
    color: #666;
    margin-bottom: 15px;
}
.comment-form p label{display: block;}
.comment-form input, .comment-form textarea{width: 100%; padding: 10px; border: 1px solid #0a1415;}
.comment-form input{height: 40px;}
.comment-form input[type=checkbox]{width: auto; height: auto;}
.comment-form p.comment-form-cookies-consent label{display: inline-block; margin-left: 10px;}

.form-submit {
    text-align: right;
}
.form-submit .submit{
    border: none;
    background:transparent;
    border:2px solid #0a1415;
    color: #0a1415;
    margin-bottom: 0;
    width: auto;
    padding: 0 20px;
}
.form-submit .submit:hover{background: #0a1415; color:#fff;}
.comment-list {
    list-style-type: none;
}
.post-navigation .screen-reader-text{display: none;}
.post-navigation .nav-links{display: flex;}
.post-navigation .nav-links .nav-previous br,
.post-navigation .nav-links .nav-next br
{
    display: none;
}
.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next
{
    flex: 1;
}
.post-navigation .nav-links .nav-previous a, .post-navigation .nav-links .nav-next a {
    background: #6897f4;
    display: inline-block;
    padding: 10px 20px;
}
.post-navigation .nav-links .nav-next{text-align: right;}
.post-navigation .nav-links .meta-nav{
    display: block;
    color: #fff;
    font-size: 12px;
}
.post-navigation .nav-links .post-title{
    color: #252525;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    position: relative;
}
.post-navigation .nav-links .post-title:after{
    position: absolute;
    top: 3px;
    color: #252525;
    font-size: 14px;
    font: normal normal normal 14px FontAwesome;
}
.post-navigation .nav-links .nav-next .post-title:after{
    content: "\f061";
    right: -15px;
}
.post-navigation .nav-links .nav-previous .post-title:after{
    content: "\f060";
    left: -15px;
}

.recent_blog {
    display: flex;
    flex-wrap: wrap;
}
.bd_postimg {
    background: #f3f3f3;
    flex: 0 0 30%;
    max-width: 30%;
}
.bd_postimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bd_deskebox{flex: 0 0 70%;
    max-width: 70%;
    padding-left: 15px;}

.post_date{color:#129827;}
.post_date i{margin-right:5px;}
.bd_deskebox h2{
    font-size: 14px;
    line-height: 18px;
    color: #040404;
    margin: 0 0 5px 0;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bd_deskebox p {
    color:#040404; margin-bottom:0;
    font-size: 12px;
    line-height: 16px;
}
.bd_deskebox p a {
    display: block;
    text-transform: uppercase;
    color: #283891;
    font-size: 12px;
    margin-top: 5px;
}
.bd_deskebox p a i{
    margin-left: 10px;
    font-size: 16px;
    line-height: 20px;
}


/**/

.bd_pagination{display: inline-block;}
.pagination {
    box-shadow: 0 1px 2px 0px #e68a3b;
    background: #fff;
    display: flex;
}
.pagination .page-numbers {
    padding: 10px 15px;
    color: #000;
    border-right: 1px solid #efefef;
}
.pagination .page-numbers.current {
    background: #e68a3b;
    color: #fff;
}
.pagination .page-numbers:hover {
    background: #f1cfb2;
    color: #000;
}
/*********/


/* New */


.column {
    column-width: 17em;
    -moz-column-width: 17em;
    -webkit-column-width: 17em;
    column-gap: 1rem;
    -moz-column-gap: 1rem;
    -webkit-column-gap: 1rem;
}


.column .tbox {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 0.5rem auto;
    position: relative;
    background: #ffffff;
    padding: 15px;
    box-shadow: 0 0 10px 0 #ededed;
    border-radius: 2px;
    transition: 0.3s ease;
}
.column .tbox:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    z-index: 1;
}
.tcontent {
  position: relative;
}
.tbox .ticon {
    border: 2px dotted #fcb52e;
    margin: 0 auto;
    margin-bottom: 10px;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    overflow: hidden;
}

.tbox .ticon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tcontent h3.thead {
    text-transform: uppercase;
    font-size: 22px;
    line-height: 28px;
    color: #0063b4;
}

.tcontent .parascroll {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}


.serbox {
    display: block;
    position: relative;
}

.serbox .serimage {
    height: 300px;
    border: 1px solid #ccc;
    padding: 20px;
    overflow: hidden;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
}

.serbox .serimage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.serbox:hover .serimage{
    border:1px solid #0c2b85;
} 

.serbox .sername {
    width: 100%;
    padding: 20px;
    margin: 0;
    background: #0c2b85;
    color: #fff;
}


.bd_serimg {
    height: 400px;
    border: 1px solid #ccc;
}

.bd_serimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.serlogosec {
    margin-top: 20px;
}

.serlogosec .serlogbox {
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.serlogosec .serlogbox li {
    margin: 1%;
    flex: 0 0 23%;
    max-width: 23%;
    height: 220px;
    border: 1px solid #ccc;
    padding: 10px 10px 50px 10px;
    position: relative;
}
.serlogosec .serlogbox li h2.ltxt {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}

.serlogosec .serlogbox li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.serlogosec h2 {
    font-size: 26px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom:20px;
}

.serlogobox {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.serlogobox a.bd_btn i {
    margin-right: 10px;
}

.serlogobox a.bd_btn {
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.serlogobox li {
    flex: 0 0 48%;
    max-width: 48%;
    margin: 1%;
}

.servdoarea video {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.services_con h1 {
    color: #ffb528;
    font-family: 'Oswald';
    font-weight: normal;
    font-size: 36px;
    line-height: 44px;
    position: relative;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services_con h1:after {
    position: absolute;
    content: " ";
    width: 300px;
    height: 2px;
    background: #ffb528;
    bottom: -5px;
    left: 0;
}
.services_con h2 {
    font-size: 30px;
    line-height: 36px;
}
/*2.1.23*/

.page-template-contact .bd_main {
    padding: 78px 0 0 0;
}

.bd_serlist {
    list-style-type: none;
    background: #000;
    display: flex;
    padding: 10px;
    margin: 0;
    border-radius: 5px;
}

.bd_serlist li {
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    list-style-type: decimal;
    padding-left: 0;
    margin-left: 20px;
}