/*
default blue:#21206a;
*/
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');
body{
    font-weight: 400;
       font-family: "Work Sans", sans-serif ;
    /* line-height: 1.5; */
    line-height: 29px;
    font-size: 17px !important;
}
/* h1,
h2,
h3 {
    margin: 3px 0px 6px 0px;
    padding: 3px 0px 6px 0px;
    font-weight: 600;
    color: #000000;
} */
h1,h2,h3,h4,h5,h6
{
    font-family: "DM Serif Display", serif;
  font-weight: 400;
  color: #000000;
}
h1 {
    font-size: 48px;
}
h2 {
    font-size: 38px;
}
h3 {
    font-size:30px;
}
h4 {
    font-size: 26px;
}

h5 {
    font-size: 24px;
}
h6 {
    font-size: 22px;
}
a {
    color: #0175c0;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
a:hover {
    color: #000000;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.mt-10
{
   margin-top: 10px;
}
.mt-20
{
   margin-top: 20px;
}
.mt-30
{
   margin-top: 30px !important;
}

.mt-40
{
   margin-top: 40px !important;
}
.mt-70
{
   margin-top: 70px;
}

.pt-80 
{
    padding-top: 80px;
}

.pb-80
{
    padding-bottom: 80px;
}

.px-80 
{
    padding: 80px 0px;
}

.px-60 
{
    padding: 60px 0px;
}


.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 30px;
  min-width: 180px;
  height: 50px;
  font-size: 18px;
  text-align: center;
  position: relative;
  white-space: nowrap;
  background: #2d3493;
  border: 1px solid #2d3493;
  color: #ffffff;
  z-index: 0;
  overflow: hidden;
  width: fit-content;
  transition: all 0.5s ease-in-out;
}
.btn::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 200%;
  background: #141A75;
  top: 0;
  left: -250%;
  z-index: -1;
  transform: skewX(45deg);
  transition: all 0.5s ease-in-out;
}
.btn:hover {
  color: #FFFFFF !important;
  border: 1px solid #141A75;
}
.btn:hover::after {
  left: -50%;
  transition: all 0.5s ease-in-out;
}
/* outline btn */
.outlinebtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 30px;
  min-width: 180px;
  height: 50px;
  font-size: 18px;
  text-align: center;
  position: relative;
  white-space: nowrap;
  /* background: #2d3493; */
  color: #ffffff;
  border: 1px solid #ffffff;
  z-index: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.outlinebtn::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 200%;
  background: #ffffff;
  top: 0;
  left: -250%;
  z-index: -1;
  transform: skewX(45deg);
  transition: all 0.5s ease-in-out;
}
.outlinebtn:hover {
  color: #000000 !important;
  /* border: 1px solid #141A75; */
}
.outlinebtn:hover::after {
  left: -50%;
  transition: all 0.5s ease-in-out;
}


.outlinebtn-w {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 30px;
  min-width: 180px;
  height: 50px;
  font-size: 18px;
  text-align: center;
  position: relative;
  white-space: nowrap;
  /* background: #2d3493; */
  color: #000000;
  border: 1px solid #000000;
  z-index: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.outlinebtn-w::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 200%;
  background: #246790;
  top: 0;
  left: -250%;
  z-index: -1;
  transform: skewX(45deg);
  transition: all 0.5s ease-in-out;
}
.outlinebtn-w:hover {
  color: #ffffff !important;
  border: 1px solid #246790;
}
.outlinebtn-w:hover::after {
  left: -50%;
  transition: all 0.5s ease-in-out;
}

.pdf-container {
            width: 100%;
            height: 100vh; /* Full viewport height */
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

.staffs img {
    width: 150px !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    height: auto;
    padding-right: 20px;
}
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    color: #b61c1c;
    cursor: default;
    background-color: #fff;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-bottom-color: transparent;
}
.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #21206a;
    border-color: #21206a;
}
.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #21206a;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    font-size: 12px;
}
.special_box {
    border: 1px solid #21206a;
    margin-bottom: 20px;
}
.special_box h1 {
    padding: 10px;
    margin: 0px;
    color: #fff;
    margin-bottom: 20px;
    background: #21206a;
    background: -moz-linear-gradient(-45deg, #21206a 0%, #2326b2 100%);
    background: -webkit-linear-gradient(-45deg, #21206a 0%, #2326b2 100%);
    background: linear-gradient(135deg, #21206a 0%, #2326b2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21206a', endColorstr='#2326b2', GradientType=1);
}
.special_box h2 {
    padding: 10px;
    font-weight: 700;
}
.special_box img {
    padding: 0x;
    height: 150px !important;
    width: 150px !important;
    border-radius: 75px;
}
.heading {
    font-size: 16px;
}
.whitebox {
    /* padding: 20px; */
    /* padding-top: 20px; */
    margin-bottom: 100px;
    background: #fff;
    /*box-shadow: rgba(0, 0, 0, 0.06) 0px 7px 25px 0px, rgba(0, 0, 0, 0.09) 0px 0px 0px 1px;*/
}

.whitebox-nopadding {
    padding: 20px 0px;
    margin-bottom: 100px;
    background: #fff;
    /*box-shadow: rgba(0, 0, 0, 0.06) 0px 7px 25px 0px, rgba(0, 0, 0, 0.09) 0px 0px 0px 1px;*/
}

.blue-box {
    min-height: 45px;
    background: #fff;
    padding: 15px;
    border-top: 3px solid #fed700;
}
.intro p {
    text-align: justify;
}
.relative {
    position: relative;
}
.position-up {
    position: absolute;
    top: -17px;
    width: 100%;
}
.testimonials-box {
    padding: 15px 0px;
    margin: 10px 0px;
    border-bottom: 1px solid #f0f0f0;
}
.donner {
    font-size: 16px;
    color: #ccc;
    text-align: right;
}
.news-heading,
.heading-small-inner {
    font-weight: 400;
    font-size: 14px;
}
.news-heading a,
.heading-small-inner a {
    color: #333;
    font-size: 12px;
}
.introductiondiv p {
    font-size: 16px;
    margin-bottom: 10px;
}
.news-heading a:hover,
.heading-small-inner a:hover {
    color: #21206a;
    text-decoration: none;
}
.new-box-archive {
    padding: 0px 0px 5px 0px;
    margin-bottom: 15px;
    margin-top: 0px;
    /* border-bottom: 1px solid #f0f0f0; */
}


.post-date {
    font-size: 10px;
    color: #ccc;
}
.heading-small-inner span {
    color: #404040;
    display: block;
}
.gallery-content {
    padding: 20px;
    border: 1px solid #f0f0f0;
    margin-top: 25px;
}
.contact-address {
    border: 1px solid #f0f0f0;
    padding: 15px;
    margin-bottom: 25px;
}
.gal-box {
    min-height: 440px;
}
.gal-heading {
    padding: 15px;
    background: #f0f0f0;
    color: #333;
    text-align: center;
}
.gal-heading a {
    color: #333;
    font-size: 22px;
}

ul li {
    list-style: none;
}
.brand {
    padding: 8px 0;
}
.brand img {
    width: 300px;
}
.header-right {
    padding-top: 0px;
    text-align: right;
    color: #21206a;
}
.footer_heading {
    font-size: 14px !important;
}
.footer_heading p {
    margin-bottom: 3px !important;
    font-size: 14px;
}
.main-text-header {
    text-align: center;
    font-size: 20px;
    margin: 0px;
    line-height: 20px;
    font-weight: 600;
    color: #cb0000 !important;
    text-shadow: 0px 0px 1px #8a8a8a;
}
.main-text-header h4 {
    /* text-align: center; */
    margin: 0;
    font-size: 22px;
    color: #cb0000;
    margin-bottom: 0px;
    padding: 0;
}
.main-text-header h1 {
    /* text-align: center; */
    font-size: 32px;
    margin: 0px;
    line-height: 34px;
    font-weight: 600;
    color: #cb0000;
    text-shadow: 0px 0px 1px #8a8a8a;
    margin-bottom: 0px
    padding: 0;
}
.main-text-header h3 {
    margin: 0;
    font-size: 24px;
    margin-bottom: 0px;
    color: #cb0000;
    padding: 0;
}
.main-text-header span {
    color: #21206a;
}
.videoWrapper{
    position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.main-text-header p {
    margin-bottom: 0px;
}
.top-box-head {
    padding: 5px 0px 5px 0px;
    background: #2C3391;
}
.bottomheader
{
    display: none;
}
.header-img {
    padding: 0px 0px 0px 0px !important;
    /* background: url('../images/banenrimg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; */
    background: #ffffff;
}
.top-images {
    margin-top: 10px;
}
.top-images img {
    height: 110px;
    width: auto;
}
.switch {
    margin-bottom: 0px;
    text-align: right;
}
.switch ul {
    margin: 0px;
    padding: 0px;
}
.switch ul li {
    list-style: none;
    display: inline-block;
}
.switch ul li a {
    padding: 5px 10px;
    font-size: 14px;
    /* background: #ccc; */
    background: #ffffff;
    color: #333;
    border-radius: 4px;
}
.switch ul li a.activeclass {
    background: #21206a;
    color: #fff;
    text-decoration: none;
}
.switch ul li a:hover {
    background: #ffffff;
    color: #000000;
    text-decoration: none;
}
.search-text {
    display: inline-block;
}
.search-text .form-control {
    border-radius: 0;
    box-shadow: none;
}
.search-text .input-group-btn .btn:hover {
    background: #0A599B;
    color: #fff;
}
.top-social-icons {}
.top-social-icons ul {
    margin: 0px;
    padding: 0px;
    text-align: left;
}
.top-social-icons ul li {
    display: inline-block;
    margin-right: 2px;
}
.top-social-icons ul li img {
    width: 25px;
}
.social-icon {
    display: inline-block;
}
.social-icon a {
    font-size: 14px;
    paddng-right: 6px;
    color: #21206a;
}
.social-icon img {
    width: 28px;
}
.main-area {
    /*text-align: justify;*/
    line-height: 1.8;
}
.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 0px;
    margin-top: 0px;
    list-style: none;
    border: 1px solid #f5f2e2;
    border-radius: 0px;
    background-color: #fff;
}
.redbg {
    background: #b61c1c;
    /* background: #6a4000; */
    color: #fff;
    display: block;
    padding: 5px 0px;
}
.redbg a {
    color: #fff;
}
.redbg a:hover {
    color: #21206a;
}
.main-nav {
    position: relative;
    z-index: 2;
}
.nav-tabs>li {
    font-size: 14px !important;
}
.nav>li>a {
    padding: 10px 8px;
}
.nav-tabs>li>a {
    background: #21206a;
    background: -moz-linear-gradient(-45deg, #21206a 0%, #2326b2 100%);
    background: -webkit-linear-gradient(-45deg, #21206a 0%, #2326b2 100%);
    background: linear-gradient(135deg, #21206a 0%, #2326b2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21206a', endColorstr='#2326b2', GradientType=1);
    color: #fff;
    border-radius: 0px 0px 0 0 !important;
}
.nav>li>a:focus,
.nav>li>a:hover {
    text-decoration: none;
    background-color: #b61c1c;
    background: #b61c1c;
    background: -moz-linear-gradient(-45deg, #b61c1c 0%, #d30000 100%);
    background: -webkit-linear-gradient(-45deg, #b61c1c 0%, #d30000 100%);
    background: linear-gradient(135deg, #b61c1c 0%, #d30000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b61c1c', endColorstr='#d30000', GradientType=1);
}
.errorpage {
    min-height: 600px !important;
}
.nav-cover {
    /* background: #004885; */
    /* background: #034D7E; */
    /* border: 1px solid #246055; */
    text-align: center;
}
.map-responsive {
    overflow: hidden;
    /* padding-bottom: 56.25%; */
    position: relative;
margin-left: 20px;
    height: 500px;
}
.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}
.main-nav ul {
    display: flex;
    margin: 0px;
    padding: 0px;
    list-style: none;
    font-size: 0px;
    text-align: center;
    align-items: center;
    /* justify-content: center; */
    gap: 20px;
}
.main-nav ul li {
    display: inline-block;
    position: relative;
    /* background: #21206a; */
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    font-size: 16px;
    /* border-right: 1px solid #5d5cdf; */
   
    
}
.main-nav ul li:first-child {
    border-left: none;
     
}
.main-nav ul li:last-child {
    border-right: none;
}


.main-nav ul li a {
    color: #000000;
    position: relative;
    text-decoration: none;
    display: inline-block;
    padding: 10px 4px;
     font-family: "Roboto", sans-serif;
  font-weight: 600;
    font-size: 18px;
    /* text-transform: uppercase; */
    background: none;
}
/* .main-nav ul li:hover,
.main-nav ul li a:hover {
    background: #004885;
} */
.main-nav ul li ul {
    padding: 0px;
    margin: 0px;
    position: absolute;
    top: 35px;
    left: 0;
    background: #fff;
    width: 225px;
    display: none;
    opacity: 0;
    visibility: hidden;
    font-size: 16px;
    -webkit-transiton: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -transition: opacity 0.2s;
    font-weight: 400;
    text-align: left;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
}
.main-nav ul li ul li a:hover .main-nav ul li a {
    color: #fff;
    font-weight: 400;
}
.main-nav ul li ul li {
    background: #ffffff;
    display: block;
    color: #fff;
    padding: 0px 2px;
        border-right: none;
}
.main-nav ul li ul li a {
    /* background: #0a599c; */
    background: #ffffff;
    color: #000000;
    display: block;
    font-weight: 400 !important;
    font-size: 14px !important;
    padding: 10px 15px;
    /* border-bottom: 1px solid #f0f0f0; */
}
/* .main-nav ul li ul li:hover,
.main-nav ul li ul li a:hover {
    background: #f2f2f2;
    
    color: #000000;
} */
.main-nav ul li:hover ul {
    display: block;
    opacity: 1;
    visibility: visible;
}
.content-box {
    padding: 0px;
}
.no-data {
    padding: 200px 0px;
    background: url('../img/texture.jpg') bottom center no-repeat;
    font-size: 25px;
    text-align: center;
}
.left-box {}
.left-box ul li {
    list-style-type: circle;
}
.main-section {
    position: relative;
    z-index: 1;
}
.main-section::before {
    content: "";
    position: absolute;
    height: 400px;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: -1;
    /* background: #21206a;
    background: -moz-linear-gradient(top, #21206a 0%, #ffffff 100%);
    background: -webkit-linear-gradient(top, #21206a 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #21206a 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21206a', endColorstr='#dcd5bb', GradientType=0); */
}
.news-front {
    border: 1px solid #f0f0f0;
    padding: 10px 25px;
}
.news-front h2 {
    font-weight: 700;
}
.blue-well {
    border: 1px solid #f0f0f0;
    padding: 15px 25px;
}
.line-well-yellow {
    padding: 7px 84px;
}
.front-gallery-scroller {
    padding: 15px 0px;
    margin: 15px 0px;
}
.testimonial-cover {
    padding: 50px 80px 60px;
    background: #f0f0f0 url('../img/papaer.jpg');
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
}
.testimonial-cover p {}
.testimonial-cover h3 {
    display: block;
    text-align: center;
    margin-bottom: 18px;
}
.testimonials-front-inner {
    padding: 30px 0px;
    margin: 10px 0px 0px;
    background: url('../img/pat.png');
}
.prefooter {
    color: #21206a;
    position: relative;
    z-index: 1;
}
.special_btn {
    width: 49%;
    display: inline-block;
}
.special_btn a {
    display: block;
    padding: 16px 10px;
    margin-bottom: 5px;
    text-align: center;
    color: #000;
    background: #fed700;
    text-decoration: none;
}
.special_btn a:hover {
    background: #21206a;
    color: #fff;
}
.special_btn i {
    font-size: 40px;
    text-align: center;
    display: block;
    margin-bottom: 10px;
}
.alert {
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert-dismissable .close,
.alert-dismissible .close {
    position: relative;
    top: 2px;
    right: 1px;
    color: inherit;
}
.noticeboardbox-main {
    display: block;
    padding-bottom: 20px;
}
.prefooter-inner {
    padding: 200px 0px 10px 0px;
    display: block;
    color: #fff;
    /* background: #0175C0; */
    /* background: -moz-linear-gradient(-45deg, #004885 0%, #0a599c 100%);
    background: -webkit-linear-gradient(-45deg, #004885 0%, #0a599c 100%); */
    background: linear-gradient(180deg, #2D3493 0%, #141A75 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2D3493', endColorstr='#141A75', GradientType=1);
    font-size: 14px;
    position: relative;
   z-index: 2;
}

.prefooter-inner::before
     {
        content: '';
        background-image:url('/frontend/assets/images/footerpattern.jpg');
        background-position: bottom center;
        background-repeat: no-repeat;
        background-size: cover;
        bottom: 0px;
        left: 0px;
        height: 100%;
        width: 100%;
        opacity: 0.05;
        position: absolute;
        z-index: -1;
        mix-blend-mode: lighten;

     }

.prefooter-inner h2 {
    color: #fff;
    margin-bottom: 10px;
}
.prefooter a {
    color: #21206a;
}
.prefooter a:hover {
    color: #111;
}
.prefooter ul {
    margin: 0px;
    padding: 0px;
}
.prefooter ul li {
    list-style: none;
    display: block;
    padding: 8px 0px;
    /* border-bottom: 1px solid #03528f; */
    /* border-bottom: 1px solid #1867ab; */
}
.prefooter ul li:last-child {
    border-bottom: none;
}
.prefooter ul li a {
    font-size: 15px;
    color: #fff;
    display: flex;
    gap: 5px;
    align-items: start;
}
.prefooter ul li a i{
    font-size: 8px;
    margin-top: 7px;
    /* margin-right: 5px; */
}
.prefooter ul li a:hover {
    color: #DDDDDD;
    text-decoration: none;
}
.padding-bottom-20 {
    padding-bottom: 20px !important;
}
.padding-l-r-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.listitems {
    border: 1px solid #f0f0f0;
    /*border-top: 0px;*/
    /*font-size: 14px;*/
    padding: 15px;
}
.listitems ul {
    margin: 0px;
    padding: 0px;
    padding: 20px;
}
.listitems li {
    display: block;
}
.listitems li a {
    color: #333;
    display: block;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #f0f0f0;
}
.listitems li a:hover {
    color: #21206a !important;
}
.relatedbox {}
.relatedbox h2 {
   padding: 10px 20px;
    font-size: 20px;
    margin: 0px;
    color: #fff;
    background: #21206a;
    background: -moz-linear-gradient(-45deg, #004885 0%, #0A599B 100%);
    background: -webkit-linear-gradient(-45deg, #004885 0%, #0A599B 100%);
    background: linear-gradient(135deg, #004885 0%, #0A599B 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004885', endColorstr='#0A599B', GradientType=1);
}


th{
    padding: 10px;
    font-size: 20px;
    margin: 0px;
    color: #fff;
    font-weight: normal;
    background: #21206a;
    background: -moz-linear-gradient(-45deg, #004885 0%, #0A599B 100%);
    background: -webkit-linear-gradient(-45deg, #004885 0%, #0A599B 100%);
    background: linear-gradient(135deg, #004885 0%, #0A599B 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004885', endColorstr='#0A599B', GradientType=1);
}

.main_content {}
.main_content h1 {
   /*padding: 10px;*/
    font-size: 35px;
    margin: 0px;
    color: #000000;
    /*background: #21206a;*/
    /*background: -moz-linear-gradient(-45deg, #004885 0%, #0A599B 100%);*/
    /*background: -webkit-linear-gradient(-45deg, #004885 0%, #0A599B 100%);*/
    /*background: linear-gradient(135deg, #004885 0%, #0A599B 100%);*/
    /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004885', endColorstr='#0A599B', GradientType=1);*/
}
.main_content h2
{
    font-size: 26px;
}
.main_content img {
    width: 100%;
    height: auto;
}
.movingnews {}
.movingnews a {
    color: #fff;
}
.movingnews a:hover {
    color: yellow;
    text-decoration: none;
}
.nav-tabs>li {
    float: left;
    margin-bottom: -1px;
    font-weight: 700 !important;
    margin-right: 2px;
}
.download_box a{
    width: 120px;
    padding: 20px;
    display: block;
    margin-top: 20px;
    border: 1px solid #f0f0f0;
}
.download_box h2 {
    font-size: 16px;
    margin: 0px;
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
}
.download_box img {
    width: 100%;
}
footer {
    font-size: 12px;
    color: #fff;
    /* margin-bottom: 30px; */
}
.footer-inner {
    padding: 8px;
    text-align: center;
    /* border-top: 5px solid #5161d7;
    border-bottom: 5px solid #950101; */
    color: #fff;
    background: #034D7E;
    /* background: -moz-linear-gradient(-45deg, #b61c1c 0%, #d30000 100%);
    background: -webkit-linear-gradient(-45deg, #b61c1c 0%, #d30000 100%);
    background: linear-gradient(135deg, #b61c1c 0%, #d30000 100%); */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b61c1c', endColorstr='#d30000', GradientType=1);
}
.form-box {
    background: #21206a;
    background: -moz-linear-gradient(-45deg, #21206a 0%, #2326b2 100%);
    background: -webkit-linear-gradient(-45deg, #21206a 0%, #2326b2 100%);
    background: linear-gradient(135deg, #21206a 0%, #2326b2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21206a', endColorstr='#2326b2', GradientType=1);
    padding: 15px 25px 25px;
    color: #fff;
}
.form-box h2 {
    color: #fff;
}
/***product slider***/
/*#####################
Additional Styles (required)
######################*/
.carousel-control.left,
.carousel-control.right {
    background-image: none !important;
}
.carousel-control {
    color: #fff;
    top: 40%;
    color: #428BCA;
    bottom: auto;
    padding-top: 4px;
    width: 30px;
    height: 30px;
    text-shadow: none;
    opacity: 1;
}
.carousel-control:hover {
    color: #d9534f;
}
.carousel-control.left,
.carousel-control.right {
    background-image: none !important;
}
.carousel-control.right {
    left: auto;
    right: -32px;
}
.carousel-control.left {
    right: auto;
    left: -32px;
}
.carousel-indicators {
    bottom: -19px;
}
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 10px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
.carousel-indicators li {
    border-radius: 0;
    width: 10px;
    height: 10px;
    background: #ccc;
    border: 1px solid #f0f0f0;
    border-radius: 50%;
}

.stickydiv{
    position: sticky;
    top: 70px;
}
.headerstickydiv{
    position: sticky;
    top: 0px;
    z-index: 999;
    box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
}
.carousel-indicators .active {
    width: 12px;
    height: 12px;
    background: #21206a;
    border-color: #21206a;
}
.thumbnail {
    display: block;
    padding: 0px;
    margin-bottom: 25px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 0px solid #ddd;
    border-radius: 4px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
}

.top-date p
{
    color: #ffffff;
    margin-bottom: 0;
    font-size: 12px;
}
.updatemsg
{
    color: #333333;
    text-align: right;
}

.foot-btn
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-top: 15px;
    border-top: 1px solid #cccccc;
}
.pdficon
{
    width: 35px;
}

.socialicon img
{
    width: 34px;
}
.side-sociallink
{
  font-weight: 600;
}
.condetail p
{
    margin-bottom: 5px;
}
.albumsarc
{
    border-radius: 6px;
    box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
}
.albumsarc p
{
   font-size: 14px;
   font-weight: 400;
   font-family: "Roboto", sans-serif;
   /* text-align: center; */
}
.searchfield
{
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}
.serchbtn 
{
    background-color: #4CAF50;
    /* background-color: #004885; */
    display: inline-block;
    cursor: pointer;
    color: #fff;
    padding: 4px 20px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 0px  4px 4px 0px;
    outline: none;
    border: none;
    line-height: 22px;
}
.mobilemenu
{
    display: none;
    background: #ffffff;
    box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
        padding: 5px 0px;
}
.top-bar
{
   background-color: #004885;
   padding: 10px 20px;
}
.footaddress a
{
    color: #ffffff;
    transition: 0.3s;
}
.footaddress a:hover
{
    color: #48a9ff;
    transition: 0.3s;
}
.membercondetail
{
    display: flex;
    flex-direction: column;
    gap:1.5px;
}
.memberreadmore
{
    color: #004885 !important;
}

.boxtitle h2
{
    font-size: 18px;
}

.teamcard-grid
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.teamcard
{
    display: flex;
    gap: 10px;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.teamcard img
{
    border-radius: 6px;
}

.teamcard h4
{
    font-size: 18px;
    color: #004885;
    margin-bottom: 3px;
}
.teamcard p
{
    font-weight: 600;
    color: #004885;
    margin-bottom: 0px;
}
.teamcard a
{
    color: #000000;
    transition: all 0.5s ease-in-out;
}
.teamcard a:hover
{
    color: #004885;
    transition: all 0.5s ease-in-out;
}
.teamcarddetail
{
    display: flex;
    flex-direction: column;
    /* gap: 3px; */
}

.table p
{
    margin-bottom: 0px;
}

 .g-2,.g-3,.g-4,.g-5,.g-6,.g-7,.g-8,.g-9,.g-10,.g-11,.g-12 {
        display: grid;
        grid-gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }


.topheaderitem a
{
   color: #ffffff;
   font-size: 12px;
   text-decoration: underline;
}

.topheaderitem.topheadercontact a 
{
    font-size: 15px;
    text-decoration: none;
    /* margin-top: 20px; */
}

.topheaderitem.topheadercontact 
{
    color: #ffffff;
}

.topheaderitem.topheadercontact a i 
{
    margin-right: 5px;
    font-size: 16px;
}

.desktopheader 
{
    /* background: #034D7E; */
   background: #ffffff;
   padding: 5px 0px;
}


.search-container {
    position: relative;
}

.search-field {
    width: 0;
    padding: 0;
    border: none;
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
    right: 40px; /* Position near search icon */
}

.search-field.expanded {
    width: 230px;
    height: 100%;
    padding: 8px 15px;
    opacity: 1;
    border: 1px solid #ddd !important;
}

.search-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px 15px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    /* border-radius: 50%; */
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 1;
}

.search-icon-btn.active {
    background-color: black;
    color: white;
}

.search-icon-btn i {
    transition: color 0.3s ease;
}

.search-icon-btn.active i {
    color: white;
}

.carousel-inner
{
    width: 100%;
    /*height: 430px;*/
     /*height: 510px;*/
    position: relative;
    z-index: 2;
}

/* .carousel-inner::before{
    content: '';
    position: absolute;
    background: linear-gradient(84deg, #000000 6%, transparent  100%);
    opacity: 0.77;
    width: 100%;
    height: 100%;
    z-index: -1;
} */

.carousel-inner h6 
{
    color: #ffffff;
    position: absolute;
    bottom: -8px;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    left: 0px;
    padding: 20px;
    background-color: #000000ad;
    width: 100%;
}

.carousel-item
{
    width: 100%;
    padding: 120px 20px;
    /* height: 430px; */
    height: 70vh;
    /* display: flex;
    align-items: center; */
    position: relative;
    align-content: center;
}

.carousel-item::before{
    content: '';
    position: absolute;
    background: linear-gradient(84deg, #000000 6%, transparent  100%);
    top: 0;
    left: 0;
    opacity: 0.77;
    width: 100%;
    height: 100%;
}



.bannercontent 
{
    position: relative;
    /* top: 105px;
    left: 124px; */
}



.bannercontent h1
{
    font-size: 48px;
    color: #ffffff;
    width: 750px;
}

.bannercontent p
{
    font-size: 22px;
    color: #ffffff;
    margin: 20px 0px;
}

.carousel-control-prev-icon
{
    background-color:#2d3493;
}

.carousel-control-next-icon
{
    background-color: #2d3493;
}

.carousel-control-next-icon, .carousel-control-prev-icon 
{
    width: 45px;
    height: 45px;
    background-size: 60% 60%;
}

.carousel-control-next-icon
{
    /* border-top-left-radius: 6px;
    border-bottom-left-radius: 6px; */
    border-radius: 50%;
}

.carousel-control-prev-icon 
{
    /* border-top-right-radius: 6px;
    border-bottom-right-radius: 6px; */
     border-radius: 50%;
}

.carousel-control-next, .carousel-control-prev
{
    width: 5%;
    opacity: 1 !important;
}

.carousel-control-prev
{
    z-index: 10;
}

.carousel-control-next
{
    z-index: 10;
}


/* .container
{
    width: 1280px;
} */


/* Banner Sidebar Start */

.bannersidebar
{
    padding: 20px;
    background: #034D7E;
}

.bannersidebar .title
{
    position: relative;
}

.title::before {
    content: "";
    height: 21px;
    position: absolute;
    top: -1px;
    width: 4px;
    background: #ffffff;
    left: 0;
}

.bannersidebar .titlewrapp
{
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bannersidebar .title h6 
{
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.2;
    padding-left: 15px;
    font-weight: bold;
    text-align: left;

 
    letter-spacing: 1px;
}

/* .bannersidebar span
{
    margin-top: 4px;
} */


.listings 
{
    height: 108px;
    overflow-y: scroll;
    scrollbar-width: thin;
}

.smallbtn
{
    background: #ddd;
    padding: 4px 10px;
    border-radius: 5px;
    color: #6e6e6e;
    font-size: 11px;
    font-weight: normal;
    letter-spacing: 0.5px;
    transition: all 0.5s ease-in-out;
}
.smallbtn:hover
{
    background: #4191E0;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

.itemlist 
{
    
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ddd;
}


.itemlist:last-child
{
    
    border-bottom: none;
}

.itemlist a
{
    font-size: 15px;
    color: #ffffff;
    display: flex;
    gap: 15px;
}

.itemlist .datestyle
{
    font-size: 14px;
    color: #e3e3e3;
    font-style: italic;
}

.itemlist i
{
    font-size: 13px;
    margin-top: 5px;
}

.sidebarnoticewrapp
{
    margin: 0px;
    padding: 0px;
}

.bannersidebar.bluebg 
{
    background: #0175C0;
    margin-bottom: 25px;
}

.newstyle {
    background: #5CB260;
    display: inline-block;
    color: #fff;
    border-radius: 3px;
    font-size: 10px;
    padding: 0 8px;
    margin-left: 10px;
    position: relative;
    top: -2px;
}




/* Banner Sidebar End */


/* report start */
.reportsidebar
{
    padding: 20px 20px 0px 20px;
    /* background: #034D7E; */
}

.reportsidebar .title
{
    position: relative;
}

.reportsidebar .title::before {
    content: "";
    height: 21px;
    position: absolute;
    top: 5px;
    width: 4px;
    background: #0175C0;
    left: 0;
}

.reportsidebar .titlewrapp
{
    margin-bottom: 15px;
    padding-bottom: 10px;
    /* border-bottom: 1px solid #ccc; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reportsidebar .title h6 
{
    color: #0175C0;
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 1.2;
    padding-left: 15px;
    font-weight: normal;
    text-align: left;
    letter-spacing: 1px;
}

.reportsidebar .smallbtn
{
    background: #ddd;
    padding: 4px 10px;
    border-radius: 5px;
    color: #6e6e6e;
    font-size: 11px;
    font-weight: normal;
    letter-spacing: 0.5px;
    transition: all 0.5s ease-in-out;
}
.reportsidebar .smallbtn:hover
{
    
    color: #000000;
    transition: all 0.5s ease-in-out;
}

.reportsidebar .itemlist a
{
    color: #000000;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reportsidebar .itemlist:last-child
{
    
    border-bottom: 1px solid #ddd;
}

.reportsidebar .itemlist .datestyle
{
    color: #999999;
    font-size: 12px;
}

.reportsidebar .itemlist .newstyle
{
    font-size: 12px;
    margin-right: 3px;
}

.mapwrapper
{
        border: 1px solid #ddd;
        box-shadow: 0 2px 6px #ccc;
        margin-bottom: 50px;
    
}

.blackbutton 
{
    padding: 5px 20px 20px 20px;
}

.blackbutton a
{
    background: black;
    color: #ffffff;
    font-size: 20px;
    padding: 20px;
    font-weight: 600;
    display: block;
    text-align: center;
    width: 100%;
}

.bluebutton
{
    padding: 0px 20px 20px 20px;
}

.bluebutton a
{
    background: #0175C0;
    color: #ffffff;
    font-size: 17px;
    padding: 20px;
    font-weight: 400;
    display: block;
    text-align: center;
    width: 100%;
}
/* report End */

/* gallery start */
.photogallery
{
    padding: 30px;
    background: #F5F5F5;
}
.photogallery .titlewrapp h6
{
   color: #0175C0;
   font-size: 18px;
   font-weight: bold;
}

.photogallery .title {
    position: relative;
}

.photogallery .title::before {
    content: "";
    height: 21px;
    position: absolute;
    top: -1px;
    width: 4px;
    background: #0175C0;
    left: -14px;
}

.photogallery .titlewrapp
{
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.img-responsive
{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.galleryinnerwrapper
{
    /* padding: 0px 15px; */
    box-shadow: 0 0 6px #00000038;
    background: #ffffff;
}
.galleryboxwrapp
{
   
    margin-top: 15px;
    margin-bottom: 15px;
}

.gallerycoverimg
{
    height: 220px;
    overflow: hidden;
    display: block;
}

.maingallery .gallerycoverimg 
{
    height: 190px;
}

.gallery-caption p
{
    margin-bottom: 0px;;
}

.gallery-caption a
{
    padding: 15px 15px 15px 15px;
    /* height: 46px; */
    overflow: hidden;
    line-height: 16px;
    text-align: left;
    display: block;
    color: #000;
    font-size: 13px;
    font-weight: 500;
}
/* gallery End */

/* Video Gallery Start */
.videogallery
{
    padding-left:20px;
}

.videogallery .videogallerywrapp 
{
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px #cccccc91;
    padding: 25px;
    background: #f9f8f8;
    min-height: 680px;
}

.videogallery iframe 
{
    margin-top: 15px;
    margin-bottom: 20px;
    height: 240px;
}
/* Video Gallery End */


/* Bottom Section Start */

.bottomrow .titlewrapp h6
{
   color: #0175C0;
   font-size: 18px;
   font-weight: bold;
}

.bottomrow .title {
    position: relative;
}

.bottomrow .title::before {
    content: "";
    height: 21px;
    position: absolute;
    top: -1px;
    width: 4px;
    background: #0175C0;
    left: -14px;
}

.bottomrow .titlewrapp
{
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.economiwrapp
{
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px #ccc;
    padding: 30px;
}

.economiwrapp .itemlist 
{
    
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ddd;
}


.economiwrapp .itemlist:last-child
{
    
    border-bottom: none;
    margin-bottom: 0px;
}

.economiwrapp .itemlist a
{
    font-size: 15px;
    color: #000000;
    display: flex;
    gap: 15px;
}


.economiwrapp .itemlist i
{
    font-size: 13px;
    margin-top: 5px;
    color: #0175c0;
}

.sidebarnoticewrapp .conlist
{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 13px;
}

.sidebarnoticewrapp .conlist:last-child
{
    margin-bottom: 0px;
}

.sidebarnoticewrapp .conlist i
{
    padding: 16px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #0175C0;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebarnoticewrapp .condetail
{
     display: flex;
     gap: 2px;
     flex-direction: column;
}

.sidebarnoticewrapp .condetail span
{
    font-size: 20px;
    
    font-weight: 700;
}

.contcatinfo li i
{
   font-size: 14px !important;
}

.contcatinfo li a 
{
    gap: 8px !important;
}


.footermember 
{
    display: flex;
    gap:20px;
}

.footermember img
{
    width: 60;
    height: 55px;
    /* object-fit: cover; */
}

.sootsocial 
{
    display: flex;
    gap: 10px;
}

.sootsocial i
{
    height: 40px;
    width: 40px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px  !important;
}

/* Bottom Section End */

/* Provision Link Start */

.prvisonlinkwrapper
{
    padding: 20px;
}

.prvisonlink
{
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* .provisionlistwrapp
{
    padding-left: 10px;;
} */

.prvisonlink img
{
    width: 25px;
    height: 25px;;
}
/* Provision Link End*/

/* archive table start */

.archivetable thead tr th
{
    background: #0175C0;
    font-size: 15px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    padding: 15px;
    vertical-align: top;
}

.archivetable tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
}

.archivetable tbody tr
{ 
    border-bottom: 1px solid #d0d0d0;
}

.archivetable tbody tr td
{
    padding: 10px;
    vertical-align: top;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
}

.archivetable tbody tr td a
{
   color: #000000;
}

.archivetable tbody tr td a i 
{
    font-size: 22px;
    color: #0175C0;
}

.archivetable table 
{
    width: 100%;
}
.breadcrumb-wrapper {
    margin-bottom: 20px;
    margin-top: 20px;
}

ul.custom-breadcrumb {
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
ul.custom-breadcrumb li {
    /* float: left; */
    text-align: left;
    font-size: 13px;
    font-family: "Roboto", sans-serif;
    
}

ul.custom-breadcrumb li i 
{
    margin-left: 10px;
    font-size: 12px;
}

ul.custom-breadcrumb li a {
    text-align: left;
    font-size: 13px;
    color: #0175C0;
}

ul.custom-breadcrumb li a:hover {
    color: #002640;
}


.bannertitles .titlewrapp h6
{
   color: #0175C0;
   font-size: 18px;
   font-family: "Roboto", sans-serif;
   font-weight: bold;
}

.bannertitles .title {
    position: relative;
}

.bannertitles .title::before {
    content: "";
    height: 21px;
    position: absolute;
    top: -1px;
    width: 4px;
    background: #0175C0;
    left: -14px;
}

.bannertitles .titlewrapp
{
    margin-bottom: 20px;
    padding-left: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.archivesidebar
{
    margin-top: 60px;
    margin-left: 15px;
}

.arcsidebar 
{
    margin-top: 30px;
}

.singlecontent 
{
    margin-top: 50px;
}

/* archive table end */

.mobiletop
{
    display: none;
}


.implink2
{
    margin-top: 40px !important;
}

.table-responsive
{
    display: block;
    width: 100%;
    overflow-x: auto;
}

.main_content a.myButton
{
    color: #ffffff !important;
    display: block;
    width: fit-content;
    margin-top: 20px;
}


/* Contact Page Start */
.contactinfo
{
    padding: 25px;
    background: #F0F0F0;
    text-align: center;
}
.contactinfo .contactdetails a
{
    color: #000000;
}
.contactinfo .contactdetails a i
{
   width: 40px;
   height: 40px;
   background: #0175C0;
   border-radius: 50%;
   margin-right: 15px;
   color: #ffffff;
   font-size: 18px;
   display: inline-flex;
   align-items: center;
   justify-content: center;

}

.contact_form
{
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 0 6px #00000038;
}

.contact_form input 
{
   width: 100%;
   margin-bottom: 20px;
   border-top: none;
   border-right: none;
   border-left: none;
   border-bottom: 1px solid #999;
   outline: none;
}

.contact_form input[type="file"] 
{
   /* border: none; */
   padding-bottom: 25px;
   margin-top: 20px;
}
.contact_form textarea 
{
   width: 100%;
   margin-bottom: 20px;
   border-top: none;
   border-right: none;
   border-left: none;
   border-bottom: 1px solid #999;
   outline: none;
   height: 100px;
   margin-top: 30px;
}

.contact_form button
{
    border: none;
    outline: none;
    color: #ffffff;
    font-weight: 500;
}
/* Contact Page End */

.news-time {
    color: #999;
    display: block;
    font-size: 12px;
    margin-top: 5px;
}

.news-time i
{
    margin-right: 5px;
}

.videoarchive iframe
{
    height: 250px;
}

.teambox 
{
    background: #ffffff;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    border-radius: 6px;
}

.teambox img 
{
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.teambox a 
{
    display: blo;

}

.teamdetail 
{
    padding: 15px;
}
.committeeboxwrapper
{
    padding-right: 20px;
    margin-top: 30px;
}
.teamdetail p
{
    margin-bottom: 10px !important;
}

.commhead 
{
    font-size: 28px;
}

.designanddevelop 
{
    color: #ffffff;
    transition: all 0.5s ease-in-out;
}

.designanddevelop:hover
{
    color: #fb455a;
    transition: all 0.5s ease-in-out;
}

/*.modal-backdrop {*/
/*    --bs-backdrop-zindex: 999 !important;*/
/*}*/
/*.modal-content*/
/*{*/
/*    z-index: 9999 !important;*/
/*}*/
/***end of product slider***/



.tnvsocialicon 
{
    display: flex;
    gap: 10px;;
}
.tnvsocialicon a
{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 25px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    font-size: 14px;
}

.websitelogo img 
{
    width: 110px;
}

.aboutwrapper 
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}


.aboutimg
{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.left-img
{
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.right-img
{
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.aboutimg img
{
   border: 10px solid #ffffff;
   border-radius: 10px;
   box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
}

.about-img-1
{
    width: 200px;
    height: 212px;
    margin-top: auto;
    object-fit: cover;
    object-position: center;
}

.about-img-2
{
    width:340px;
    height:330px;
    object-fit: cover;
    object-position: center;
}
.about-img-3
{
    width:200px;
    height:250px;
    object-fit: cover;
    object-position: center;
}
.about-img-4
{
    width:200px;
    height:183px;
    margin-bottom: auto;
    object-fit: cover;
    object-position: center;
}

.aboutcontent 
{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aboutprops-1 
{
    box-shadow: none !important;
    border: none  !important;
    width: 250px;
    height: 220px;
     object-fit: cover;
    position: absolute;
z-index: -1;
    left: 50px;
    top: 35px;
}

.aboutprops-2 
{
     box-shadow: none !important;
    border: none  !important;
    width: 190px;
    height: 210px;
     object-fit: cover;
    position: absolute;
z-index: -1;
    right: 170px;
    top: 15px;
}
.headingwrapp
{
    margin-bottom: 20px;
}
.headingwrapp span
{
    display: block;
    width: 105px;
    height: 2.5px;
    background: #000000;

}

.centerheading 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.centerheading span
{
      display: block;
    width: 105px;
    height: 2.5px;
    background: #000000;
    }

.centerheading p
{
    width: 800px;
    margin: auto;
    margin-top: 30px;
}

.btnwrapp 
{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}



.servicesection
{
    position: relative;
}

.servicesection::before 
{
    content: '';
   position: absolute;
   background-image:url('/frontend/assets/images/servicepattern.jpg');
   background-position: center;
   background-repeat: no-repeat;
   top: 0;
   left: 0;
   background-size: cover;
   height: 100%;
   width: 100%;
   opacity: 0.5;
}

.servicesection .container 
{
    position: relative;
}

.homeservicetaxgrid 
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.servtaxbox img
{
   width: 40px;
   height: 40px;
}

.homeservicetaxgrid 
{
    margin-top: 80px;
}

.servtaxbox
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    color: #000000;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
    
}

.servtaxbox h3 
{
    font-size: 24px;
}

.servtaxbox .servtaxboxicon
{
    width: 80px;
    height: 80px;
    background: #141A75;
    border-radius: 50%;
    margin: -80px auto 0px auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
}

.servtaxbox .servtaxboxicon img 
{
   filter: brightness(0) invert(1);
}

.qualitygrid 
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.leftquality img 
{
    border-radius: 10px;
    box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
}

.rightquality  p 
{
    margin-bottom: 20px;
}

.scrollnumber 
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 40px;

}

.scrollnumber .scrollbox 
{
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
     text-align: center; 
     display: flex;
     flex-direction: column;
     gap: 17px;
}

.scrollnumber .scrollbox h2 
{
    font-size: 38px;
    margin-bottom: 0px;
    font-family: "Work Sans", sans-serif ;
    font-weight: 700;
}

.scrollnumber .scrollbox h5 
{
     font-family: "Work Sans", sans-serif ;
    font-weight: 600;
      margin-bottom: 0px;
}

.scrollnumber .scrollbox h2 sup
{
    font-size: 28px;
}
 .scrollnumber .scrollbox  img
 {
     width: 20px;
     height: 20px;
     
         filter: brightness(0) invert(1);
    }

    .scrollboxicon 
    {
        border-radius: 50%;
        height: 50px;
        width: 50px;
        background: #141A75;
        display: flex;
        align-items: center;
        justify-content: center;
        margin:  -55px auto 0px auto;
        
    }

    .whychoosgrid 
    {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        background: #141A75;
        border-radius: 20px;
        position: relative;
    }

     .whychoosgrid::before
     {
        content: '';
        position: absolute;
        background-image:url('/frontend/assets/images/patt.jpg');
        top: 0px;
        left: 0px;
        height: 100%;
        width: 100%;
        opacity: 0.6;
        mix-blend-mode: multiply;
        border-radius: 20px;
     }

    .rightwhychoos 
    {
        display: flex;
        align-items: end;
        position: relative;
    }

    .leftwhychoos 
    {
        padding: 60px 40px 60px 0px;
        position: relative;
    }

   .leftwhychoos  h2 
   {
    color: #ffffff;
    margin-bottom: 20px;
   }

    .leftwhychoos  p{
        color: #ffffff;
    }

    .processection 
    {
        position: relative;
       z-index: 2;
    }

     .processection::before
     {
        content: '';
        background-image:url('/frontend/assets/images/certificationprocess.jpg');
         background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
        top: 0px;
        left: 0px;
        height: 100%;
        width: 100%;
        opacity: 0.2;
        position: absolute;
        z-index: -1;

     }

     .processtop 
     {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
        margin-top: 80px;
     }

     .processbottom 
     {
         display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-top: 80px;
     }

     .processbox 
     {
        padding: 0px 30px 30px 30px;
        background: #ffffff;
        box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        text-align: center;
     }

     .processbox .procnum
     {
        height: 80px;
        width: 80px;
        border-radius: 50%;
        background: #141A75;
        margin: -40px auto 20px auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 70px;
        font-weight: 700;
        color: #ffffff;
            box-shadow: 0px 9px 10px 0px rgba(0, 109.94565217391303, 212.50000000000003, 0.28);

     }
     
     .strategialliancegrid 
     {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 50px;
     }

      .strategialliancegrid a{
        padding: 30px;
        border-radius: 8px;
        border: 1px solid #0E0E0ECC;
      }

      .footertop 
      {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        background-image:url('/frontend/assets/images/footertop-pat.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 6px;
        box-shadow: 0px 5px 35px 10px rgba(0, 0, 0, 0.1);
       
      }

       .footertop .footertopleft
       {
          padding: 30px;
       }
       .footertopleft 
       {
        display: flex;
        flex-direction: column;
        justify-content: center;
       }
.footertopright 
{
    display: flex;
    justify-content: end;
}

.footertopright img 
{
    margin-top: -60px;
}

.footertopsection 
{
    margin-top: 60px;
    margin-bottom: -140px;
     position: relative;
     z-index: 3;
}

.footermenuheading 
{
    margin-bottom: 5px;
}

.footermenuheading h5
{
    color: #ffffff;
}

.footermenuheading span
{
    height: 2px;
    width: 60px;
    background: white;
    display: block;
}

.fotmenu  li a
{

    align-items: center !important;
}

.fotmenu i
{
    font-size: 14px !important;
    margin-right: 7px !important;
    margin-top: 3px !important;
}

.footersocial
{
    display: flex;
    gap: 10px;
}

.footersocial a 
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background: #ffffff;
    border-radius: 50%;
}

.footersocial a i 
{
    color: #141A75;
    font-size: 17px;
}

.copyright
{
    margin-top: 80px;
    text-align: center;
    border-top: 1px solid #FFFFFF24;
    padding-top: 20px;
}

.footerlogo img 
{
    background: #ffffff;
    padding: 10px;
    width: 140px;
    border-radius: 10px;
}

.footlogocolum .footerlogo
{
   margin-bottom: 30px;
}

.footlogocolum p 
{
    font-size: 16px;
}

.footermenucol 
{
    padding-left: 80px;
}

.bannerslider
{
    overflow: hidden;
}

.footermenugrid 
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.bannersection 
{
    position: relative;
    text-align: center;
}

.bannersection::before
{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: #141A75;
    opacity: 0.3;
}

.bannersection h1 
{
    font-size: 48px;
    text-align: center;
    color: #ffffff;
    margin: auto;
    width: 60%;
}

.singlebannercontent 
{
    position: relative;
    text-align: center;
}

.servicetaxgrid 
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.servtaxbox2 
{
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
}

.servtaxbox2 img 
{
    border-radius: 5px;
}

.servtaxbox2 h5 
{
    margin: 20px 0px;
}

.servtaxbox2 p 
{
    font-size: 15px;
    margin-bottom: 0px;

}

.shortdesc 
{
    font-size: 17px !important;
    margin-bottom: 20px !important;
    color: #000000;
}

.allservwrap 
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.servicesinglegrid 
{
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 60px;
}

.leftservicesingle img 
{
    border-radius: 10px;
}

.leftservicesingle h2 
{
    margin: 20px 0px;
}

.breadcrums ul
{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    margin-bottom: 0px;
    padding: 0px;
}

.breadcrums ul li a
{
    
    color: #ffffff;
}

.breadcrums ul li i 
{
    margin-right: 8px;
    font-size: 13px;
}

.breadcrums ul li
{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.aboutgrid 
{
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 60px;
}

.aboutfirstrow 
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
}

.aboutfirstrow.aboutfirstrowopt
{
    align-items: normal !important;
}

.aboutfirstrow img 
{
    border-radius: 10px;
}

.img-height 
{
    height: 425px;
}
.img-height-2
{
    height: 525px;
}
.img-height-100 
{
    height: 100%;
}
.left-outlinebox 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.left-outlinebox img 
{
    width: 50px;
    height: 50px;
}

.boxwrapp 
{
    margin-top: 40px;
}

.outlinebox 
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.left-outlinebox 
{
    padding: 20px;
    border: 1px solid #b4b4b4;
    border-radius: 10px;
    text-align: center;
}

.left-outlinebox  h5 
{
    margin-bottom: 0px;
}

.longcontent 
{
    margin-top: 30px;
}

.leftgrid ul 
{
 padding-left: 5px;
 
}
.leftgrid ul li 
{
    /* display: flex;
    flex-direction: column; */
    /* flex-wrap: wrap; */
  position: relative;
  margin-bottom: 10px;
}

.leftgrid ul li::before
{
    content: "\f058"; /* Unicode for fa-home */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* Required for solid icons */
  margin-right: 8px;
  color: #2D3493;
  font-size: 18px;
}

.left-outlinebox.botbox
{
    align-items: start;
    text-align: left;
}

.contactgrid 
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contactbox 
{
    padding: 20px;
    background: #ffffff;
    box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.14);
    display: flex;
    gap: 20px;
    border-radius: 10px;
}

.contactboxicon
{
    border-radius: 10px;
}

.contactboxicon i 
{
    font-size: 22px;
    color: #ffffff;
}

.contactboxicon
{
    width: 60px;
    height: 60px;
    background: #141A75;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactboxtitle 
{
    color: #000000;
}

.contactboxtitle p 
{
    margin-bottom: 0px;
}

.notelist ul li
{
  display: flex;
}

.longcontent h4
{
   margin-bottom: 20px;
}
.longcontent h5
{
   margin-bottom: 20px;
}

.aboutsidebar
{
    padding: 20px;
    box-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: sticky;
    top: 100px;
}

.sidebarlist 
{
    padding-left: 0px;
    margin-bottom: 0px;    
}

.sidebarlist li 
{
    position: relative;
    padding: 10px 0px;
    display: flex;
    font-size: 15px;
    border-bottom: 1px solid #DDDDDD;

}

.sidebarlist li:last-child 
{
    border: none;
    padding-bottom: 0px;
}

.sidebarlist li::before
{
     content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  margin-right: 10px;
  color: #2D3493;
  font-size: 18px;
}

.sidebarlist li a 
{
    color: #000000;
}

.certificpro ul li
{
    display: flex;
}

.certificpro h4 
{
    margin: 20px 0px;
}


.aboutgrid p:last-child
{
    margin-bottom: 0px;
}

.aboutgrid ul
{
   margin-bottom: 0px;
}

.aboutgrid ul li:last-child
{
   margin-bottom: 0px;
}


.longcontent ul
{
   margin-bottom: 0px;
}

.longcontent ul li:last-child
{
   margin-bottom: 0px;
}

.longcontent.singlelong
{
    margin-top: 0px;
}

.longcontent h2 
{
    margin: 20px 0px;
}

.linetitlewrapp 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.linetitlewrapp span 
{
    height: 2px;
    width: 130px;
    margin-top: 10px;
    background: #000000;
}

.linetitlewrapp h2 
{
    text-align: center;
}

.accreditwrapp 
{
    text-align: center;
    width: 950px;
    margin: 20px auto 50px auto;
}

.accreditwrappgrid 
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.accreditbox 
{
    background: #ffffff;
    padding: 30px;
    box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 33.33%;
    border-radius: 10px;
}

.accreditbox h5 
{
    margin-bottom: 0px;
}

.outlinebox h5
{
    font-size: 23px;
}

.hewdmargin h2 
{
    margin-bottom: 20px;
}

.longcontent h3
{
    margin-bottom: 10px;
}

.left-outlinebox.textcontrol 
{
    gap: 10px;
}

.left-outlinebox.textcontrol h2 
{
    font-size: 85px !important;
    color: #2D3493;
    margin-bottom: 0px;
}

.longlist ul li 
{
    display: flex;
    /* align-items: center; */
}

.longlist h6
{
   margin-bottom: 20px;
}

.longlistmargin ul 
{
    margin-bottom: 30px;
}

.nomargin 
{
    margin: 0px;
}

.ulm ul 
{
    margin-bottom: 20px;
}

.sideform 
{
    background: #ffffff;
    padding: 30px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    left: 0px;
}

.sideform label
{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
}

.sideform input
{
    width: 100%;
    border-radius: 10px;
    border: 1px solid #b4b4b4;
    background: #fafafa;
    padding: 12px;
    margin-bottom: 15px;
}

.sideform button 
{
    background: #000000;
        padding: 16px 32px 16px 32px;
    font-size: 15px;
    color: #ffffff;
    border-style: none;
    border-radius: 30px 30px 30px 30px;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.sideform button:hover
{
  background: #2d3493;
transition: all 0.5s ease-in-out;
}


.traningtoppoints
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.traningherogrid
{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.traninghero-left
{
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
}

.traningsecondhero .leftwhychoos
{
    color: #ffffff !important;
}
.traningsecondhero .leftwhychoos h4
{
    color: #ffffff !important;
    margin-bottom: 10px  !important;
}


.traningsecondhero .leftwhychoos.leftgrid ul li::before
{
    content: "\f058"; /* Unicode for fa-home */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* Required for solid icons */
  margin-right: 8px;
  color: #ffffff;
  font-size: 18px;
}

.traningherothird
{
    display: grid;
    grid-template-columns: 2fr 1fr ;
    gap: 50px;

}
.thirdleftbox1
{
    padding: 40px;
    color: #ffffff;
    border-radius: 10px;
}
.thirdleftbox1 h4
{
    color: #ffffff;
    margin-bottom: 10px;
}

.thirdleftbox2
{
     padding: 40px;
     border-radius: 10px;
     box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
     margin-top: 30px;
}
.thirdleftbox2 h4
{
    margin-bottom: 10px;
}

.thirdleftbox2 li 
{
    border-bottom: 1px solid #00000040;
    padding-bottom: 10px;
}

.thirdright
{
    padding: 40px;
    border-radius: 10px;
}
.thirdright h4 
{
    margin-bottom: 10px;
}

.applyformwrap
{
    width: 80%;
    padding: 40px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    margin: auto;
}

.applyformwrap h2
{
 text-align: center;
 margin-bottom: 20px;
}

.inputwrapp
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.inputwrapp label
{
    margin-bottom: 5px;
    margin-top: 15px;
    font-weight: 500;
    font-size: 15px;
    color: #000000;
}

.inputwrapp input,
.inputwrapp select 
{
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #b4b4b4;
    background: #fafafa;
    width: 100%;
}

.applyformwrap button
{
    width: 100%;
    padding: 12px 32px;
    background: #000000;
    transition: all 0.5s ease-in-out;
    margin-top: 20px;
    color: #ffffff;
    border-radius: 30px;
}

.applyformwrap button:hover
{
    background: #2d3493;
    transition: all 0.5s ease-in-out;
}

.titlewrapp h2
{
   text-align: center;
}
.titlewrapp p
{
   text-align: center;
   width: 80%;
   margin: 10px auto 0px auto;
}

.certificate-container {
            width: 100%;
              max-width: 1240px;
              margin: 40px auto 0px auto;            background-color: white;
            overflow: hidden;
        }
        
        .certificate-header {
            background: linear-gradient(135deg, #2c7fb8, #1d5f8a);
            color: white;
            text-align: center;
        }
        
        .certificate-header h1 {
            font-size: 24px;
            margin-bottom: 5px;
        }
        
        .certificate-header p {
            font-size: 16px;
            opacity: 0.9;
        }
        
        
        .certificate-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
            border: 1px solid #dddddd;
        }
        
        .certificate-table th {
            text-align: left;
            padding: 15px;
            /* font-weight: 600; */
            
            background: #ffffff;
            border-bottom: 1px solid #dddddd;
            border-right: 1px solid #dddddd;
            width: 25%;
             color: #000000;
             font-size: 17px;
        }

         .certificate-table tr:first-child th {
            font-weight: 600;
            background: #131971;
             color: #ffffff;
        }
         .certificate-table tr:first-child td {
            font-weight: 600;
            background: #131971;
             color: #ffffff;
        }
        
        .certificate-table td {
            padding: 15px;
            border-bottom: 1px solid #dddddd;
            color: #000000;
              font-size: 17px;
        }

        .certificate-table td img 
        {
            width: 200px;
        }
        
        .certificate-table tr:last-child th,
        .certificate-table tr:last-child td {
            border-bottom: none;
        }

        .search-container
        {
            margin-top: 40px;
        }

        .search-container input
        {
            padding: 24px !important;
            border: 1px solid #dddddd;
            border-top-left-radius: 30px;
            border-bottom-left-radius: 30px;
        }

        .search-container .searchbtn
        {
             border-top-right-radius: 30px !important;
            border-bottom-right-radius: 30px !important;
        }

        .search-container input::placeholder
        {
            font-size: 17px;
        }

        .contactgrid
        {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .contactsmallhead
        {
             color: #141a75;
        }
    
        .conboxwrap
        {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .conbox
        {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: #ffffff;
            border-radius: 6px;
            box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
        }

        .conboxicon
        {
            width: 50px;
            height: 50px;
            border-radius: 6px;
            background: #141a75;
            display: flex;
            align-items: center;
            justify-content: center;
        }
 .conboxicon i 
 {
    font-size: 20px;
    color: #ffffff;
 }
        .conbox p 
        {
            margin-bottom: 0px;
            color: #000000;
        }

        .conboxdetail h6
        {
            margin-bottom: 5px;
        }

        .conboxwrap
        {
            margin-top: 30px;
        }

        .formwrap
        {
            padding: 30px;
            background: #ffffff;
            box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
            border-radius: 6px;
            margin-bottom: -220px;
            position: relative;
            z-index: 10;
        }

        .coninputwrap
        {
            display: flex;
            gap: 10px;
        }
        
        .formwrap h4
        {
           margin-bottom: 20px;
        }
        
        .conlabel
        {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 0px;
        }

        .coninputoutwrap
        {
            margin-top: 10px;
        }

        .inputfield input
        {
            padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #b4b4b4;
    background: #fafafa;
    width: 100%;
        }
        .inputfield textarea
        {
            padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #b4b4b4;
    background: #fafafa;
    width: 100%;
        }


        .inputfield label
{
    margin-bottom: 5px;
    margin-top: 15px;
    font-weight: 500;
    font-size: 15px;
    color: #000000;
}

.coninputwrap.coninputwrapgap
{
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 20px;
}


.conformwrap button
{
    width: 100%;
    padding: 12px 32px;
    background: #000000;
    transition: all 0.5s ease-in-out;
    margin-top: 20px;
    color: #ffffff;
    border-radius: 30px;
}


.contactmap iframe
{
    height: 500px;
    margin-bottom: -212px;
}




/* new */
/* Mega Menu */
.has-mega-menu {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: none;
    width: 850px;
    border-radius: 6px;
}

.has-mega-menu:hover .mega-menu,
.has-mega-menu:focus-within .mega-menu {
    display: block;
}

.mega-menu-wrapper {
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    /* border-top: 2px solid #e0e0e0; */
    border-radius: 6px;
}

.mega-menu-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.mega-column {
    flex: 1;
    min-width: 200px;
}

.mega-column-title {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #333;
}

.mega-column-title a {
    color: #333;
    text-decoration: none;
    display: block;
}

.mega-column-title a:hover {
    color: #007bff;
    /* text-decoration: underline; */
}

.mega-item {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    margin-left: 20px;
    color: #555;
}

.mega-item a {
    color: #555;
    text-decoration: none;
    display: block !important;
      text-decoration: none !important;
     font-weight: 400 !important;
     font-size: 14px !important;
     text-align: left !important;
     padding: 0px !important;
}

.mega-item a:hover {
    color: #007bff;
     /* text-decoration: underline; */
} 

.mega-column-title a {
    color: #333  !important;
    text-decoration: none !important;
     font-weight: 400 !important;
     font-size: 14px !important;
    text-align: left !important;
    padding: 0px !important;
    display: flex !important;
    /* align-items: center; */
    gap: 10px;
}

.mega-column-title a i 
{
    margin-top: 8px;
    font-size: 13px;
}


/* Column title WITH children (big + bold) */
.mega-column-title.has-children {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

/* Style for links inside .has-children */
.mega-column-title.has-children a {
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    text-align: left !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.mega-column-title.has-children a i {
    margin-top: 0;
    font-size: 14px;
}


/* Mobile Menu Styling */
.m-nav-bar .sub-menu {
    display: none;
    padding-left: 15px;
    border-left: 1px solid #eee;
    margin: 5px 0;
}

.m-nav-bar .sidebar-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.m-nav-bar a {
    color: #333;
    text-decoration: none;
}

.whychoosegrid
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.whychooseleft img
{
   border: 10px solid #ffffff;
   box-shadow: 0px 5px 35px 10px rgba(0, 0, 0, 0.1);
   border-radius: 10px;
}

.whychooseleft .why-top-img
{
    margin-top: -180px;
    margin-left: -90px;
    width: 350px;
    height: 300px;
}

.whychooseright
{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.whychooseright h2 
{
    margin-bottom: 30px;
    color: #2d3493;
}

.whychoosebottom
{
    /* background: #eaebfe; */
    background: linear-gradient( #eaebfe 0%,  #ffffff 100%);
}

.whychooseboxwrapper
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.whychoosebox
{
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /* z-index: 1; */
}

.whychoosebox::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 10px;
    /* z-index: -1; */
    opacity: 0.5;
}

.whychoosebox h5 
{
    color: #ffffff;
    position: relative;
}

.locationwrapp
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.locationbox
{
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: #ffffff;
    box-shadow: 0px 0px 35px 5px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    overflow: hidden;

}

.locationmap iframe
{
    height: 320px!important;
}
.locationdetail
{
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    
}
.locationdetail p
{
   margin-bottom: 0px;
   font-size: 16px;
       line-height: 1.5em;
}
.locationdetail a p
{
   color: #000000;
}
.locdetails
{
    display: flex;
    gap: 10px;
}
.locationdetailtitle
{
    font-size: 25px;
}

.locfinaldetail h3
{

   font-weight: 500;
   font-family: "Work Sans", sans-serif;
   font-size: 18px;
   margin-bottom: 0px !important;
}

.locadd h3 
{
   text-transform: uppercase;
}

.newsmediabox
{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.newsmediabox img 
{
    width: 90px;
}

.servicetaxgrid.newsmediagrid
{
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
/* Optional: Add JS toggle for better UX (see below) */


.has-dropdown ul 
{
    padding: 15px !important;
}

.has-dropdown ul li a
{
    padding:5px 0px !important;
}

.aboutcontactdetail .contactgrid
{
    gap: 30px !important;
}

@media (max-width: 1200px) {
    .container
    {
        /* max-width: 95% !important; */
        width: 95% !important;
    }

    .main-nav ul li a { 
        font-size: 16px;
    }
}

@media (max-width: 1100px) {
       .teamcard-grid
{
   
    grid-template-columns: 1fr 1fr;
   
}
    .offcanvas {
        /* background: #03528f !important; */
        background: #ffffff !important;
    }
    .offcanvas-header .btn-close {
        /* filter: invert(1) brightness(100); */
        margin-right: 0px;
        opacity: 1;
        border-radius: 50%;
        border: 1px solid #000;
        height: 20px;
        width: 20px;
    }
    .more-searches {
        
    }

    .mobile-has-children .sidebar-menu  {
        padding: 0px;
    }
    
   
    .whitebox {
        margin-bottom: 50px;
    }
    .prefooter ul {
        margin-bottom: 30px;
    }
    .notice-group-block ul {
        margin: 0;
        padding: 0;
        margin-bottom: 20px;
    }
    .menuburger {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0px;
        padding: 10px;
        border: 1px solid #2C3391;
        border-radius: 5px;
    }
    .menuburger span {
        border: 1px solid #2C3391;
        width: 25px;
        height: 4px;
        background: #2C3391;
        border-radius: 5px;
        display: block;
        margin-top: 5px;
    }
    .menuburger span:first-child {
        margin-top: 0;
    }
    .txt-right {
        display: flex;
        align-items: flex-end;
        flex-direction: column;
    }
    /* MOBILE MENU */
    .m-menu-list {
        list-style: none;
        padding-left: 7px;
    }
    .m-menu-list li {
        padding: 10px 0px;
        display: block;
    }
    .m-menu-list li a {
        /* color: #fff; */
        color: #000000;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
    }
    .m-menu-list li a i {
        /* color: #fff; */
        color: #000000;
    }

     .m-menu-list  li ul li {
        padding: 5px 0px;
        display: block;
    }
    .sidebar-menu {
        padding-bottom: 5px;
        display: flex;
        gap: 10px;
        align-items: center;
        /*justify-content: space-between;*/
        font-size: 18px;
        border: none;
        outline: none;
        /* color: #ffffff; */
        color: #000000;
        margin: 0;
        transition: all 0.5s ease-in-out;
    }
    .sub-menu {
        display: none;
        color: #ffffff;
    }
    .sub-menu ul {
        padding-left: 15px;
    }
    .sub-menu ul li a {
        /* color: #fff; */
        color: #000000;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
    }
    .container1 {
        padding: 0px 15px;
    }
    .mobileflex {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .audiocontroll
    {
        height:25px;
         margin-top:2px; 
         width:250px;
    }
    /* .desktopheader
    {
        display: none;
    } */
.mobilemenu
{
    display: block;
}
.mbl-main-text-header {
    
    font-size: 20px;
    margin: 0px;
    line-height: 20px;
    font-weight: 600;
    color: #cb0000 !important;
    text-shadow: 0px 0px 1px #8a8a8a;
}


.mbl-main-text-header h4 {
    /* text-align: center; */
    width: 60%;
    margin: 0;
    font-size: 20px;
    color: #cb0000;
    margin-bottom: 0px;
    padding: 0;
}


.mbl-main-text-header h3 {
    margin: 0;
    font-size: 16px;
    margin-bottom: 0px;
    color: #cb0000;
    padding: 0;
}

.bottombar
{
    background-color: #ffffff;
    /* box-shadow: 0px 10px 35px 5px rgba(0,0,0,0.1); */
    /* padding: 5px 20px; */
}
.brand img {
    width: 95px;
}
.slidemenulogo
{
    display: flex;
    align-items: center;
    gap: 5px;
}
.slidemenulogo h4
{
    text-align: left;
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 0px !important;
}
.slidemenulogo h3
{
    text-align: left;
    color: #ffffff;
    font-size: 14px;
    margin-top: 0px !important;
}

.mblnone
{
    display: none !important;
}

.topheaderlogo
{
    display: none !important;
}

.pctop 
{
    display: none !important;
}

.mobiletop
{
    display: block;
}

.mobiletopflex
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topheaderitem.topheadercontact a {

    margin-top: 0px;
}

.desktopheader
{
    display: none;
}

.carousel-item {
    padding: 80px 20px;
}
.bannercontent 
{
    padding-left: 40px;
}

 .container, .container-lg, .container-md, .container-sm {
        max-width: 100% !important;
    }

}

@media (max-width: 1024px) { 

    .mobilemenu {
    padding: 5px 0px;
}

    .px-80
    {
        padding: 50px 0px;
    }

    .container
    {
        padding: 0px 20px;
    }

    .bannercontent h1 {
    font-size: 40px;
    color: #ffffff;
    width: 750px;
    }

    .footermenugrid {
    grid-template-columns: 1fr 1fr;

}

.footermenucol {
    padding-left: 0px;
}

.footermenucol {
    padding-left: 0px;
}

.footlogocolum p {
  width: 80%;
}

    .prefooter ul {
        margin-bottom: 10px;
    }


.homeservicetaxgrid {
    grid-template-columns: 1fr 1fr;
    row-gap: 80px;
    column-gap: 30px;
}

.qualitygrid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.about-img-1 {
    width: 150px;
}
.about-img-2 {
    width: 230px;
}
.about-img-3 {
    width: 150px;
}

.about-img-4 {
    width: 150px;
}

.aboutgrid {

    grid-template-columns: 1fr;
    gap: 30px;
}

.bannersection 
{
    padding: 40px 20px;
}

.bannersection h1 {
    font-size: 38px;
}

h1 {
    font-size: 38px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size:28px;
}
h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
}
h6 {
    font-size: 20px;
}

.accreditbox 
{
    width: 47.7%;
}

.accreditwrapp {
    width: 800px;
}

.whychooseleft .why-top-img {
    margin-top: -86px;
    margin-left: 24px;

}

.whychoosegrid {
    gap: 40px;
}

}

@media (max-width: 992px) {

.aboutwrapper {
    grid-template-columns: 1fr;
    gap: 30px;
}

    .container
    {
        /* max-width: 95% !important; */
        width: 95% !important;
        max-width: 100% !important;
    }

        .container, .container-lg, .container-md, .container-sm {
        max-width: 100% !important;
    }

    .main-nav ul li a { 
        font-size: 14px;
    }

    .topheaderitem.topheadercontact a {
        font-size: 14px;
        text-decoration: none;
        /* margin-top: 20px; */
    }

    .about-img-1 {
    width: 100%;
}
.about-img-2 {
    width: 100%;
}
.about-img-3 {
    width: 100%;
}

.about-img-4 {
    width: 100%;
}

.whychoosgrid {
   display: flex;
   flex-direction: column-reverse;
    gap: 30px;
}

.leftwhychoos {
    padding: 30px 30px 0px 30px;
}

.processbox .procnum { 
        height: 60px;
    width: 60px;
        font-size: 45px;
}



}

@media (max-width: 900px) { 
    .mobiletopflex
    {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .contactinfo 
    {
        text-align: left;
    }
    .contactinfo .contactdetails
    {
          margin-top: 20px;
    }

    .centerheading p {
    width: 100%;
}

.accreditwrapp {
        width: 100%;
    }

    .contactgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.formwrap {
    margin-bottom: 30px;
}

}

@media (max-width: 800px) {

    .mbl-main-text-header h4 {
        /* text-align: center; */
        width: 60%;
        font-size: 18px;
    }
    .mbl-main-text-header h3 {
       
        font-size: 14px;
       
    }
    
    .teamcard-grid
    {
       
        grid-template-columns: 1fr;
       
    }

    .teamcard {
        padding: 10px;

    }

    .teamcard h4 {
        font-size: 16px;

    }

    .footertop {
    grid-template-columns:1fr;
    
}

.footertopright {
    justify-content: center;
}
.processtop {
    grid-template-columns: 1fr;
   row-gap: 55px;
    margin-top: 55px;
}

.processbottom {
    grid-template-columns: 1fr;
row-gap: 55px;
    margin-top: 55px;
}

.strategialliancegrid {
  grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.footertopsection {
    margin-top: 0px;
    margin-bottom: -140px;
    position: relative;
    z-index: 3;
}

.footertopleft {
    align-items: center;
}

.footertopright img {
    margin-top: 0px;
}

.footertopleft p 
{
    text-align: center;
}

.footertopleft h4 
{
    text-align: center;
}

.left-img {
    display: flex;
    flex-direction: column-reverse;
}

  .about-img-1 {
    display: none;
}
.about-img-2 {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.about-img-3 {
   display: none;
}

.about-img-4 {
    display: none;
}

.aboutprops-2 { 
    display: none;
}
.aboutprops-1 { 
    display: none;
}

.aboutimg {
    gap: 0px;
}

    .bannercontent h1 {
        font-size: 30px;
        width: 100%;
    }

    /* .carousel-control-prev {
    left: 15px;
}

    .carousel-control-next {
   right: 15px;
} */

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

    .homeservicetaxgrid {
        grid-template-columns: 1fr;
        row-gap: 80px;
        column-gap: 30px;
    }

        .px-80 {
        padding: 40px 0px;
    }


    .locationwrapp {
    grid-template-columns: 1fr;
    gap: 30px;
}
.servicetaxgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.servicesinglegrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
}

@media (min-width: 768px) {
    #cbp-spmenu-s2,
    #cbp-spmenu-s1 {
        display: none;
    }

  
}
@media (max-width: 768px) {
    .brand {
        text-align: center;
    }
    .top-images {
        text-align: center;
    }
    .relatedbox1 h2 {
        margin-top: 20px;
    }
    .main-text-header h1 {
        font-size: 25px;
    }
    .main-text-header h3 {
        font-size: 17px;
        margin-bottom: 0px;
    }
    .main-text-header h4 {
        font-size: 15px;
        font-weight: 400;
    }
    .top-images img {
        height: 30px;
    }
    .main-text-header {
        font-size: 14px;
    }
    .main-nav ul {
        text-align: center;
    }
    .main-nav ul li a {
        color: #fff;
        position: relative;
        text-decoration: none;
        text-transform: uppercase;
        display: inline-block;
        padding: 8px 8px;
        font-weight: 400;
        font-size: 16px;
    }
    .special_btn {
        width: 24%;
        display: inline-block;
        margin-bottom: 15px;
    }
    .nav-tabs>li {
        font-size: 18px !important;
    }
    .news-heading,
    .heading-small-inner {
        font-weight: 400;
        font-size: 20px;
    }
    .mbl-main-text-header h4 {
        /* text-align: center; */
        width: 68%;
        
    }

    .bottomrow
    {
        gap: 30px;
    }

    .prefooter ul {
        margin-bottom: 0px;
    }
    .implink2 {
        margin-top: 0px !important;
        margin-bottom: 20px !important;
    }

    .mblfoot h2
    {
       margin-top: 20px;
    }

    .footmember h2 
    {
        margin-bottom: 20px;
    }
    
    .socialhead
    {
        margin-top: 30px !important;
        margin-bottom: 10px !important;
    }

    .photogallery {
        padding: 20px;
    }
    .mapwrapper {
        margin-bottom: 10px !im;
    }

    .map-responsive 
    {
        margin-left: 0px;
        margin-top: 40px;
    }

    .traningtoppoints
{
    grid-template-columns: 1fr;
}

.traningherothird {
    grid-template-columns:1fr;
    gap: 0px;
}

.aboutfirstrow {
    grid-template-columns: 1fr;
}
.traningtoppoints {
    gap: 0px;
}

.traningherogrid {
    grid-template-columns: 1fr;
}

.applyformwrap {
    width: 100%;
}

.inputwrapp {
    grid-template-columns: 1fr;
    gap: 0px;
}

.inputwrapp input, .inputwrapp select {
    padding: 10px;
}

    .whychoosegrid {
        grid-template-columns: 1fr;
    }

        .whychooseleft .why-top-img {
        display: none;
    }

        .whychoosegrid {
        gap: 25px;
    }

    .whychooseright h2 {
    margin-bottom: 10px;
}

.whychooseboxwrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.item-why-1
	{
		order: 1;
	}
	.item-why-2
	{
		order: -1;
	}

    .whyboxsection
    {
        padding-top: 0px !important;
        padding-bottom: 30px !important;
    }

    .servicetaxgrid.newsmediagrid {
    grid-template-columns: 1fr 1fr;
}

}
@media (max-width: 650px) {

    .carousel-item {
    height: 60vh;
    }

    /* .committeeboxwrapper .teambox 
{
    margin-right: 0px;
} */
    .mbl-main-text-header h4 {
        /* text-align: center; */
        width: 100%;
        
    }
    .switch ul li a {
    font-size: 12px;
    padding: 5px 8px;
}
.gap-4{
    gap:1rem !important;
}
.myButton-w
{
  
    font-size: 12px !important;
}
.brand {
    padding:0px !important;
}
.newsandupdate
{
    display: none;
}

.foot-btn
{
    flex-wrap: wrap;
    gap:15px;
}

.nav-tabs .nav-link {
    font-size: 14px !important;
}

.nav-link.active {
    font-size: 14px !important;
}

.more-searches a {
    padding: 10px !important;
}

.more-searches a h2{
    font-size: 14px;
}

h1 {
    font-size: 27px;
}

h2 {
    font-size: 22px;
}

.whitebox {
    padding: 8px;
    box-shadow:none;
}

.main_content h1 {
    font-size: 27px;
}


.main_content h2 {
    font-size: 22px;
    margin-bottom: 20px;
}
h1, h2, h3 {
    margin: 0;
    padding: 0;
}

.whitebox {
        margin-bottom: 0px;
}

.relatedbox2 h2 
{
    font-size: 22px;
}

.table-responsive table {
    width: 500px;
}

.scrollnumber {
    grid-template-columns: 1fr;
    row-gap: 60px;
    column-gap: 60px;
    margin-top: 50px;
}

    .footermenugrid {
        grid-template-columns: 1fr;
    }

    .copyright {
    margin-top: 30px; 
    }

.aboutfirstrow {
    grid-template-columns: 1fr;
    gap: 30px;
} 

.mt-40 {
    margin-top: 30px !important;
}

.item-1
	{
		order: 1;
	}
	.item-2
	{
		order: -1;
	}

    .boxwrapp {
    margin-top: 30px;
}

.outlinebox {
    grid-template-columns: 1fr;
}

.outlinebox {
    grid-template-columns: 1fr;
}

.contactgrid {
    grid-template-columns: 1fr;
}

.bannersection 
{
    padding: 30px 20px;
}
.bannersection h1 {
    font-size: 30px;
}

h1 {
    font-size: 30px;
}
h2 {
    font-size: 28px;
}
h3 {
    font-size:26px;
}
h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}
h6 {
    font-size: 20px;
}

.accreditbox {
     width: 100%;
 }

 .accreditwrapp {

    margin: 20px auto 20px auto;
}


 .certificate-table th, 
            /* .certificate-table td {
                display: block;
                width: 100%;
            } */
            
            .certificate-table th {
                border-bottom: none;
                padding-bottom: 5px;
            }
            
            .certificate-table td {
                padding-top: 5px;
                padding-bottom: 15px;
            }

            .certificate-container {
    margin: 25px auto 0px auto;
;
}

.bannersection h1 {

    width: 65%;
}
.titlewrapp p {
    width: 100%;
}

.search-container .searchbtn {

    min-width: 120px !important;
}

.search-container input 
{
    font-size: 18px;
}

.conboxwrap {
    grid-template-columns: 1fr;
    gap: 30px;
}

.coninputwrap.coninputwrapgap {
    grid-template-columns: 1fr;
    gap: 0px;
}

.contactmap iframe {
    height: 250px;
    margin-bottom: 30px;
    border-radius: 6px;
}

.contactmap
{
    padding-left: 20px;
    padding-right: 20px;
}

    .whychooseboxwrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whychoosebox { 
        height: 250px;
    }

    .locationbox {
    display: grid;
    grid-template-columns: 1fr;
    background: #ffffff;
    box-shadow: 0px 0px 35px 5px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    overflow: hidden;
}

    .servicetaxgrid.newsmediagrid {
    grid-template-columns: 1fr;
}

.newsmediabox img {
    width: 60px;
}

.servicetaxgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.btnwrapp .outlinebtn-w
{
    display: none;
}

.footertopright img
{
    width: 100%;
    height: auto;
    object-fit: cover;
}

}
@media (max-width: 550px) {
    .audiocontroll
    {
        
         width:195px;
    }
    .mbl-main-text-header h4 {
        
        font-size: 13px;
    }
    .mbl-main-text-header h3 {
        font-size: 16px;
        margin-top: 0px !important;
        color: #004885;
    }

    .brand img {
        width: 80px;
    }

        .bannercontent {
        padding-left: 0px;
        text-align: center;
    }

    .bannercontent a 
    {
        margin: auto;
    }

    .carousel-item {
        padding: 60px 20px;
    }
.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 30px;
    height: 30px;
    background-size: 60% 60%;
}
    
    
}
@media (max-width: 470px) {
    .audiocontroll
    {
        
         width:120px;
    }

    .flexrev{
        flex-direction: column-reverse;
    }
    
}
@media (max-width: 415px) {
    body {
        font-size: 16px !important;
    }
    .nav>li>a {
        padding: 10px 5px;
    }
    .switch {
        margin-bottom: 0px;
        text-align: left;
        position: relative;
    }
    .mobile_menu_open {
        position: absolute;
        bottom: 0px;
        right: 0px;
    }
    .mobile_menu_open a {
        display: inline-block;
        padding: 2px 10px;
        background: #b61c1c;
        color: #fff;
        text-align: center;
        font-size: 13px;
    }
    .main-text-header {
        font-size: 10px;
        color: #b61c1c;
        font-weight: 700;
        margin-top: 7px;
        line-height: 1.3;
    }
    .special_btn {
        width: 49%;
        display: inline-block;
        margin-bottom: 0px;
    }
    .nav-tabs>li {
        font-size: 18px !important;
    }
    .news-heading,
    .heading-small-inner {
        font-weight: 400;
        font-size: 14px;
    }
    /*******for nav **************/
    .cbp-spmenu {
        background: #47a3da;
        position: fixed;
    }
    .cbp-spmenu h3 {
        color: #afdefa;
        font-size: 1.9em;
        padding: 20px;
        margin: 0;
        font-weight: 300;
        background: #0d77b6;
    }
    .cbp-spmenu a {
        display: block;
        color: #fff;
        font-size: 1.1em;
        font-weight: 300;
    }
    .cbp-spmenu a:active {
        background: #afdefa;
        color: #47a3da;
    }
    /* Orientation-dependent styles for the content of the menu */
    .cbp-spmenu-vertical {
        width: 100%;
        height: 100%;
        top: 0;
        z-index: 1000;
    }
    .cbp-spmenu-vertical a {
        border-bottom: 1px solid #C55652;
        padding: 1em;
        color: #F2D2D5;
    }
    .cbp-spmenu-horizontal {
        width: 100%;
        height: 150px;
        left: 0;
        z-index: 1000;
        overflow: hidden;
    }
    .cbp-spmenu-horizontal h3 {
        height: 100%;
        width: 20%;
        float: left;
    }
    .cbp-spmenu-horizontal a {
        float: left;
        width: 20%;
        padding: 0.8em;
        border-left: 1px solid #258ecd;
    }
    /* Vertical menu that slides from the left or right */
    .cbp-spmenu-left {
        left: -240px;
    }
    .cbp-spmenu-right {
        right: -110%;
    }
    .cbp-spmenu-left.cbp-spmenu-open {
        left: 0px;
    }
    .cbp-spmenu-right.cbp-spmenu-open {
        right: 0px;
    }
    /* Transitions */
    .cbp-spmenu,
    .cbp-spmenu-push {
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    /* Example media queries */
    @media screen and (max-width: 55.1875em) {
        .cbp-spmenu-horizontal {
            font-size: 75%;
            height: 110px;
        }
        .cbp-spmenu-top {
            top: -110px;
        }
        .cbp-spmenu-bottom {
            bottom: -110px;
        }
    }
    @media screen and (max-height: 26.375em) {
        .cbp-spmenu-vertical {
            font-size: 90%;
            width: 190px;
        }
        .cbp-spmenu-left,
        .cbp-spmenu-push-toleft {
            left: -190px;
        }
        .cbp-spmenu-right {
            right: -190px;
        }
        .cbp-spmenu-push-toright {
            left: 190px;
        }
    }
    #cbp-spmenu-s1.cbp-spmenu {
        background: #F3DBDB none repeat scroll 0% 0%;
    }
    #cbp-spmenu-s1.cbp-spmenu h3 {
        background: #fff;
    }
    #cbp-spmenu-s1.cbp-spmenu a {
        color: #804E1D;
        text-decoration: none;
    }
    #cbp-spmenu-s1.cbp-spmenu-vertical a {
        border-bottom: 1px solid #F2EAEA;
    }
    #cbp-spmenu-s1 a.brand-home {
        color: #DF0C13;
        font-size: 30px;
        padding-left: 60px;
    }
    #cbp-spmenu-s1.cbp-spmenu a:hover {
        background: #D1C2C2 none repeat scroll 0% 0%;
    }
    #cbp-spmenu-s2.cbp-spmenu a:hover {
        background: #21206a none repeat scroll 0% 0%;
        text-decoration: none;
        color: #DF0C13;
    }
    #cbp-spmenu-s2.cbp-spmenu {
        background: #21206a none repeat scroll 0% 0%;
        padding: 30px 0px 0px 30px;
    }
    #cbp-spmenu-s2.cbp-spmenu ul {
        padding: 0px 20px;
    }
    #cbp-spmenu-s1.cbp-spmenu a {
        text-decoration: none;
    }
    #cbp-spmenu-s2 li {
        list-style: none;
    }
    .cbp-spmenu-vertical a {
        border-bottom: 1px solid #21206a;
        padding: 0.1em;
    }
    .cbp-spmenu a {
        display: block;
        color: #fff;
        font-size: 1em;
        font-weight: 300;
    }
}
.custom-position {
    bottom: 31px;
}
.custum_btn {
    padding: 3px 12px !important;
}
.form-control {
    display: block;
    width: 100%;
    height: 29px;
    padding: 6px 12px;
    line-height: 14px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ffffff;
    border-radius: 0px;
    font-size: 14px;
}
.form-control:focus {
    box-shadow: none;
    border: 1px solid #125ea0;
}
.myButton {
    /* -moz-box-shadow: inset 0px 1px 0px 0px #b61c1c; */
    /* -moz-box-shadow: inset 0px 1px 0px 0px #004885; */
    /* -webkit-box-shadow: inset 0px 1px 0px 0px #b61c1c; */
    /* -webkit-box-shadow: inset 0px 1px 0px 0px #004885; */
    background-color: #0175c0;
    /* background-color: #004885; */
    display: inline-block;
    cursor: pointer;
    color: #ffffff !important;
    padding: 10px 32px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    border-radius: 2px;
    font-size: 14px;
    transition:  all 0.5s ease-in-out;
}
.myButton:hover {
    background-color: #1b75e4;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    transition:  all 0.5s ease-in-out;
}
a.myButton:hover {
    color: #fff;
    text-decoration: none;
}
.myButton-w
{
    background-color: #ffffff;
    display: inline-block;
    cursor: pointer;
    color: #000000;
    padding: 5px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}
.myButton-w:hover
{
    background: #b61c1c;
    border-color: #b61c1c;
    color: #ffffff;
    text-decoration: none;
}

.myButton i 
{
    margin-right: 10px;
}
.container {
    width: 1260px !important;
}
.container1 {
    padding: 0px 45px;
}
.nav-tabs .nav-link {
    font-size: 18px;
    background: #21206a;
    background: -moz-linear-gradient(-45deg, #004885 0%, #0a599c 100%);
    background: -webkit-linear-gradient(-45deg, #004885 0%, #0a599c 100%);
    background: linear-gradient(135deg, #004885 0%, #0a599c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004885', endColorstr='#0a599c', GradientType=1);
    color: #fff;
    font-weight: normal;
}

.nav-link.active{
    font-size: 18px;
    margin: 0px;
    font-weight: normal;
    color: #404040 !important;
    background: none;
}

.nav-link {
    color: #495057;
}
.nav-link:hover {
    color: #fff;
}
.newsandupdate
{
    /* padding: 10px; */
    /* background: #fff; */
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    /* border-radius: 0pc 5px 0px 5px; */
}
.special_box1 {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    /* text-align: center; */
    /* height: 300px; */
}

.special_box1 h1 {
    padding: 10px;
    font-size: 20px;
    margin: 0px;
    color: #fff;
    /* margin-bottom: 20px; */
    background: #21206a;
    /* background: -moz-linear-gradient(-45deg, #21206a 0%, #2326b2 100%); */
    background: -moz-linear-gradient(-45deg, #004885 0%, #0a599c
    100%);
    /* background: -webkit-linear-gradient(-45deg, #21206a 0%, #2326b2 100%); */
    background: -webkit-linear-gradient(-45deg, #004885 0%, #0a599c
    100%);
    /* background: linear-gradient(135deg, #21206a 0%, #2326b2 100%); */
    background: linear-gradient(135deg, #004885 0%, #0a599c
    100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21206a', endColorstr='#2326b2', GradientType=1);
}
.special_box1
{
    display: flex;
    align-items: start;
    /* padding: 0px 10px; */
}
.special_box1 h2 {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 12px;
    padding: 0;
    color: #0a599c;
}
.special_box1 img {
    padding: 3px !important;
    height: 70px !important;
    width: 70px !important;
    object-fit: cover;
    /* border-radius: 50%; */
    /* border: 2px solid #21206a; */
    /* margin-top: 15px; */
}
.listitems .special_box1:last-child
{
    border: none;
}
.special_box1 p {
      margin: 0;
    font-size: 12px;
}
.special_box1 a {
      margin: 0;
    font-size: 12px;
    color: #000000;
    transition: 0.3s;
}
.special_box1 a:hover {
    color:#004885;
    transition: 0.3s;
}
.txt-center {
    text-align: center;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-30 {
    margin-bottom: 30px;
}
.members_details {
    padding: 0px 0px 0px 10px;
}
.members_details a
{
   font-size: 12px; 
}
.more-searches {
}
.more-searches a {
    padding: 10px;
    background: white;
    border-radius: 4px;
    border: 1px solid #b0adad;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    flex: 1;
    text-decoration: none;
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s;
}
.more-searches a:hover
{
    background: #f1f1ff;
    transition: all 0.3s;
}
.relatedbox1 h2 {
    /* border: 1px solid #f0f0f0; */
    margin-bottom: 0px;
    padding: 0px 20px 20px 0px;
    font-weight: 700;
    color: #495057;
}
.font18 {
    font-size: 18px;
    color: #404040;
}
.relatedbox2 h2 {
    padding: 10px 15px;
    font-size: 20px;
    margin: 0px;
    color: #fff;
    background: #21206a;
    background: -moz-linear-gradient(-45deg, #004885 0%, #0a599c 100%);
    background: -webkit-linear-gradient(-45deg, #004885 0%, #0a599c 100%);
    background: linear-gradient(135deg, #004885 0%, #0a599c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21206a', endColorstr='#2326b2', GradientType=1);
}
.more-searches a i {
    transform: scale(0.9);
    transition: all 0.3s;
    margin-bottom: 15px;
    font-size: 24px;
    width: 50px;
    background: #21206a;
    text-align: center;
    vertical-align: baseline;
    line-height: 64px;
    border-radius: 50%;
    height: 50px;
    color: white;
}
.more-searches a .iconboximg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: all 0.3s;
    margin-bottom: 5px;
    font-size: 24px;
    width: 50px;
    background: #004885;
    text-align: center;
    vertical-align: baseline;
    line-height: 64px;
    border-radius: 50%;
    height: 50px;
    color: white;
}
.more-searches a .iconboximg img
{
    width:26px;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.sewarow {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sewarow .icons {
    transition: 0.3s ease all;
}
.sewarow>a * {
    display: block;
}
.sewarow>a {
    padding: 15px 5px;
    text-align: center;
    border: 1px solid #f0f0f0;
    text-decoration: none;
}
.sewarow .icons .fa:before {
    /* background: #b61c1c; */
    background: #000000;
    width: 45px;
    height: 45px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    margin: 0 auto;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icons h5 {
    font-size: 17px;
    margin: 0;
    color: #404040;
}
.sr_only {
    font-size: 0;
    display: none;
}
.notice-group-block ul li a {
    color: #fff;
    background: #004885;
    display: block;
    padding: 15px 10px;
    font-size: 19px;
    margin-bottom: 2px;
}
.btn-primary {
    color: #fff;
    background-color: #004885;
    border-color: #004885;
}
.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}
.gallery-photos {
    border-radius: 5px;
    overflow: hidden;
}
.gallery-photos a img {
    width: 400px;
    height: 300px;
    object-fit: cover;
}
.t-call-img img {
    width: 70px;
}
/* pagiantion */
.ook {
    width: 100%;
    display: flex !important;
    /* justify-content: center !important; */
    justify-content: start !important;
    margin-top: 20px !important;
}
.pagination {
    display: inline-block;
}
.pagination a {
    color: black;
    float: left;
    padding: 2px 14px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
    font-size: 22px;
}
.pagination a.active {
    background-color: #004885;
    color: white;
    border: 1px solid #004885;
}
.pagination a:hover:not(.active) {
    background-color: #ddd;
}
/* Accordian */
.accordion {
    /* background-color: #f5f4f2;
    border: 1px solid var(--border-color);
    color: #444; */
    cursor: pointer;
    /* padding: 18px; */
    /* width: 80%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px; */
    transition: 0.4s;
}
.active,
.accordion:hover {
    /* background-color: #21206a; */
    color: white;
}
.b-active,
.accordion:hover {
    background-color: #21206a;
    color: white;
}
.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.rotation {
    transform: rotate(-90deg);
    transition: transform 0.25s linear;
}
.card1 {
    display: grid;
    grid-template-rows: 45px auto 20px;
}
.card1 .card-body {
    border-left: 2px solid #e6e6e6;
    border-right: 2px solid #e6e6e6;
    border-bottom: 2px solid #e6e6e6;
    padding: 13px 0px 8px 20px;
}
.card-header {
    border: 1px solid black;
    padding: 10px 10px;
}
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #182f89 0%, #2e54e7 100%);
    background: linear-gradient(to right, #182f89 0%, #2e54e7 100%);
    overflow-x: hidden;
    transition: 0.5s;
}
.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}
.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: white;
    display: block;
    transition: 0.3s;
}
.overlay a:hover,
.overlay a:focus {
    color: #f1f1f1;
}
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}
@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px
    }
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}
.language_changer.active {
    background-color: #4CAF50;
    color: white;
}
@media (max-width: 768px) {
    /* .offcanvas {
        background: #03528f !important;
    }
    .offcanvas-header .btn-close {
        filter: invert(1) brightness(100);
    }
    .more-searches {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .whitebox {
        margin-bottom: 50px;
    }
    .prefooter ul {
        margin-bottom: 30px;
    }
    .notice-group-block ul {
        margin: 0;
        padding: 0;
        margin-bottom: 20px;
    }
    .menuburger {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0px;
        padding: 10px;
        border: 1px solid #dfe0e1;
        border-radius: 5px;
    }
    .menuburger span {
        border: 1px solid #000;
        width: 25px;
        height: 1px;
        display: block;
        margin-top: 5px;
    }
    .menuburger span:first-child {
        margin-top: 0;
    }
    .txt-right {
        display: flex;
        align-items: flex-end;
        flex-direction: column;
    }
   
    .m-menu-list {
        list-style: none;
    }
    .m-menu-list li {
        padding: 8px 0px;
        display: block;
    }
    .m-menu-list li a {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
    }
    .sidebar-menu {
        padding-bottom: 5px;
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
        font-size: 18px;
        border: none;
        outline: none;
        color: #ffffff;
        margin: 0;
        transition: all 0.5s ease-in-out;
    }
    .sub-menu {
        display: none;
        color: #ffffff;
    }
    .sub-menu ul {
        padding-left: 15px;
    }
    .sub-menu ul li a {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
    }
    .container1 {
        padding: 0px 15px;
    }
    .mobileflex {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    */
    /*MOBILE MENU END */
}

.ook {
    width: 100%;
    display: flex !important;
    /* justify-content: center !important; */
    justify-content: start !important;
    margin-top: 20px !important;
  }

  .page {
    display: inline-block;
  }

  .page a {
    color: black !important;
    float: left !important;
    padding: 2px 10px !important;
    text-decoration: none !important;
    transition: background-color .3s !important;
    /* border: 1px solid #ddd !important; */
    font-size: 16px !important;
    margin-right: 20px;
  }

  .page a.active {
    /* background-color: #004885 !important; */
    background-color: #0175C0 !important;
    color: white !important;
    border: 1px solid #0175C0 !important;
    border-radius: 2px;
  }

  .page a:hover:not(.active) {background-color: #ddd !important; }
  
  
  .modal-content {
      height: 90vh;
  }
  
  .modal-body {
    overflow-y: scroll;
}

.modal-body img {
    background-size: cover;
    width: 100%;
}

/* model image ================= */

#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }

  #myImg:hover {opacity: 0.7;}

  /* The Modal (background) */
  .modal1 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }

  /* Modal Content (image) */
  .modal-content1 {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 500px;
    height: auto;
  }

  /* Caption of Modal Image */
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }

  /* Add Animation */
  .modal-content1, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
  }

  @-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)}
    to {-webkit-transform:scale(1)}
  }

  @keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
  }

  /* The Close Button */
  .close1 {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }

  .close1:hover,
  .close1:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
