/*nav style start*/
/*
 * Stellarnav.js 2.5.0
 * Responsive, lightweight, multi-level dropdown menu.
 * Copyright (c) 2018 Vinny Moreira - http://vinnymoreira.com
 * Released under the MIT license
 */
/* all nav */
.stellarnav { position: relative; width: 100%; z-index: 500; line-height: normal;background:#1991c8 !important; }
.stellarnav a { color: #000; }
.stellarnav ul { margin: 0; padding: 0; text-align: center; }
.stellarnav li { list-style: none; display: block; margin: 0; padding: 0; position: relative; line-height: normal; vertical-align: middle; }
.stellarnav li a { padding: 10px; display: block; text-decoration: none; color: #777; font-size: 16px; font-family: inherit; box-sizing: border-box; -webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out; transition: all .3s ease-out; }

/* main level */
.stellarnav > ul > li { display: inline-block;  }
.stellarnav > ul > li > a { padding: 15px 40px; }

/* first level dd */
.stellarnav ul ul { top: auto; width: 230px; position: absolute; z-index: 5000; text-align: left; display: none; background: #ddd; }
.stellarnav li li { display: block; background-color:#1991c6; border-bottom:#FFF 1px solid;}
/* custom start*/
li.active {
    background: #0ec7c1;
}
.stellarnav > ul > li:hover{background:#0ec7c1;}
.stellarnav > ul > li > a:hover{color:#1552E4;}
.stellarnav.mobile ul > li.has-sub a{background:#4d9ed1 !important;}
.stellarnav.mobile ul > li.has-sub a:hover{background:#0ec7c1 !important;}
/* custom end*/
/* second level dd */
.stellarnav ul ul ul { top: 0; /* dd animtion - change to auto to remove */ left: 230px; }
.stellarnav > ul > li:hover > ul > li:hover > ul { opacity: 1; visibility: visible; top: 0;/* background added*/background:#0ec7c1;}

/* custom start*/
.stellarnav.dark li li a:hover{border:0; color:#fff; /*background:#599403;*/ /*background:#0074e4;*/ background:#0ec7c1;color:#1552E4;}
/* custom end*/
/* .drop-left */
.stellarnav > ul > li.drop-left > ul { right: 0; }
.stellarnav li.drop-left ul ul { left: auto; right: 230px; }

/* light theme */
.stellarnav.light { background: rgba(255, 255, 255, 1); }
.stellarnav.light a { color: #000; }
.stellarnav.light ul ul { background: rgba(255, 255, 255, 1); }
.stellarnav.light li a { color: #000; }

/* dark theme */
.stellarnav.dark { background: rgba(0, 0, 0, 1); }
.stellarnav.dark a { color: #FFF; }
.stellarnav.dark ul ul { background: rgba(0, 0, 0, 1); }
.stellarnav.dark li a { color: #FFF; }
/* sticky nav */
.stellarnav.fixed { position: fixed; width: 100%; top: 0; left: 0; z-index: 5555; }

/* only used when 'scrollbarFix' is set to true in the js. This fixes horizontal scrollbar caused by the dd menus that are very long.*/
body.stellarnav-noscroll-x { overflow-x: hidden; }

/* general styling */
.stellarnav li.has-sub > a:after { content: ''; margin-left: 10px; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 6px solid #FFF; display: inline-block; }
.stellarnav li li.has-sub > a:after { margin-left: 10px; float: right; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 6px solid #FFF; position: relative; top: 4px; }
.stellarnav li.drop-left li.has-sub > a:after { float: left; margin-right: 10px; border-left: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-right: 6px solid #FFF; }
.stellarnav.hide-arrows li.has-sub > a:after, .stellarnav.hide-arrows li li.has-sub > a:after, .stellarnav.hide-arrows li.drop-left li.has-sub > a:after { display: none; }
.stellarnav .menu-toggle, .stellarnav .close-menu, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile { display: none; text-transform: uppercase; text-decoration: none; }
.stellarnav .dd-toggle { display: none; position: absolute; top: 0; right: 0; padding: 0; width: 48px; height: 48px; text-align: center; z-index: 


  ; border: 0; }
.stellarnav.desktop li.has-sub a { padding-right: 5px; }
.stellarnav.desktop.hide-arrows li.has-sub a { padding-right: 15px; }
.stellarnav.mobile > ul > li > a.dd-toggle { padding: 0; }
.stellarnav li.call-btn-mobile, .stellarnav li.location-btn-mobile { display: none; }

/* svg icons */
.stellarnav svg { fill: currentColor; width: 1em; height: 1em; position: relative; top: 2px; }
/* svg icons */

.stellarnav a.dd-toggle .icon-plus { box-sizing: border-box; transition: transform 0.3s; width: 12px; height: 100%; position: relative; vertical-align: middle; display: inline-block; }
.stellarnav a.dd-toggle .icon-plus:before { content: ''; display: block; width: 12px; height: 0px; border-bottom: solid 3px #777; position: absolute; top: 50%; transform: rotate(90deg); transition: width 0.3s; }
.stellarnav a.dd-toggle .icon-plus:after { content: ''; display: block; width: 12px; height: 0px; top: 50%; border-bottom: solid 3px #777; position: absolute; }
.stellarnav li.open > a.dd-toggle .icon-plus { -webkit-transform: rotate(135deg); -ms-transform: rotate(135deg); -o-transform: rotate(135deg); transform: rotate(135deg); }
.stellarnav.light a.dd-toggle .icon-plus:before { border-color: #000; }
.stellarnav.light a.dd-toggle .icon-plus:after { border-color: #000; }
.stellarnav.dark a.dd-toggle .icon-plus:before { border-color: #FFF; }
.stellarnav.dark a.dd-toggle .icon-plus:after { border-color: #FFF; }

.stellarnav .icon-close { box-sizing: border-box; width: 12px; height: 12px; position: relative; display: inline-block; }
.stellarnav .icon-close:before { content: ''; display: block; width: 12px; height: 0px; border-bottom: solid 3px #777; position: absolute; top: 50%; transform: rotate(45deg); }
.stellarnav .icon-close:after { content: ''; display: block; width: 12px; height: 0px; top: 50%; border-bottom: solid 3px #777; position: absolute; transform: rotate(-45deg); }
.stellarnav.light .icon-close:before { border-color: #000; }
.stellarnav.light .icon-close:after { border-color: #000; }
.stellarnav.dark .icon-close:before { border-color: #FFF; }
.stellarnav.dark .icon-close:after { border-color: #FFF; }

/* mobile nav */
.stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile, .stellarnav .close-menu { padding: 15px; box-sizing: border-box; }
.stellarnav .menu-toggle span.bars { display: inline-block; margin-right: 7px; position: relative; top: 3px; }
.stellarnav .menu-toggle span.bars span { display: block; width: 15px; height: 2px; border-radius: 6px; background: #777; margin: 0 0 3px; }
.stellarnav .full { width: 100%; }
.stellarnav .half { width: 50%; }
.stellarnav .third { width: 33%; text-align: center; }
.stellarnav .location-btn-mobile.third { text-align: center; }
.stellarnav .location-btn-mobile.half { text-align: right; }
.stellarnav.light .third, .stellarnav.light .half { border-left: 1px solid rgba(0, 0, 0, .15); }
.stellarnav.light.left .third, .stellarnav.light.left .half { border-bottom: 1px solid rgba(0, 0, 0, .15); }
.stellarnav.light.right .third, .stellarnav.light.right .half { border-bottom: 1px solid rgba(0, 0, 0, .15); }
.stellarnav.light .third:first-child, .stellarnav.light .half:first-child { border-left: 0; }
.stellarnav.dark .third, .stellarnav.dark .half { border-left: 1px solid rgba(255, 255, 255, .15); }
.stellarnav.dark.left .third, .stellarnav.dark.left .half { border-bottom: 1px solid rgba(255, 255, 255, .15); }
.stellarnav.dark.right .third, .stellarnav.dark.right .half { border-bottom: 1px solid rgba(255, 255, 255, .15); }
.stellarnav.light.left .menu-toggle, .stellarnav.light.right .menu-toggle { border-bottom: 0; }
.stellarnav.dark.left .menu-toggle, .stellarnav.dark.right .menu-toggle { border-bottom: 0; }
.stellarnav.dark .third:first-child, .stellarnav.dark .half:first-child { border-left: 0; }
.stellarnav.light .menu-toggle span.bars span { background: #000; }
.stellarnav.dark .menu-toggle span.bars span { background: #FFF; }
.stellarnav.mobile { position: static; }
.stellarnav.mobile.fixed { position: static; }
.stellarnav.mobile ul { position: relative; display: none;}
.stellarnav.mobile.active { padding-bottom: 0; }
.stellarnav.mobile.active > ul { display: block; }
.stellarnav.mobile ul { text-align: left; }
.stellarnav.mobile > ul > li { display: block; } 
.stellarnav.mobile > ul > li > a { padding: 15px; }
.stellarnav.mobile ul { background: rgba(221, 221, 221, 1); }
.stellarnav.mobile ul ul { position: relative; opacity: 1; visibility: visible; width: auto; display: none; -moz-transition: none; -webkit-transition: none; -o-transition: color 0 ease-in; transition: none; }
.stellarnav.mobile ul ul ul { left: auto; top: auto; }
.stellarnav.mobile li.drop-left ul ul { right: auto; }
.stellarnav.mobile li a { border-bottom: 1px solid rgba(255, 255, 255, .15); }
.stellarnav.mobile > ul { border-top: 1px solid rgba(255, 255, 255, .15); }
.stellarnav.mobile.light li a { border-bottom: 1px solid rgba(0, 0, 0, .15); }
.stellarnav.mobile.light > ul { border-top: 1px solid rgba(0, 0, 0, .15); }
.stellarnav.mobile li a.dd-toggle { border: 0; }
.stellarnav.mobile.light li a.dd-toggle { border: 0; }
.stellarnav.mobile .menu-toggle, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .close-menu, .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .location-btn-mobile { display: inline-block; }
.stellarnav.mobile li.call-btn-mobile { border-right: 1px solid rgba(255, 255, 255, .1); box-sizing: border-box; }
.stellarnav.mobile li.call-btn-mobile, .stellarnav.mobile li.location-btn-mobile { display: inline-block; width: 50%; text-transform: uppercase; text-align: center; }
.stellarnav.mobile li.call-btn-mobile.full, .stellarnav.mobile li.location-btn-mobile.full { display: block; width: 100%; text-transform: uppercase; border-right: 0; text-align: left; }
.stellarnav.mobile.light ul { background: rgba(255, 255, 255, 1); }
.stellarnav.mobile.dark ul { background: rgba(0, 0, 0, 1); }
.stellarnav.mobile.dark ul ul { background: rgba(255, 255, 255, .08); }
.stellarnav.mobile.light li.call-btn-mobile { border-right: 1px solid rgba(0, 0, 0, .1); }
.stellarnav.mobile.top { position: absolute; width: 100%; top: 0; left: 0; z-index: 5000; }
.stellarnav.mobile li.has-sub > a:after, .stellarnav.mobile li li.has-sub > a:after, .stellarnav.mobile li.drop-left li.has-sub > a:after { display: none; }


/* left and right positions */
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul { position: fixed; top: 0; bottom: 0; width: 100%; max-width: 280px; overflow-x: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.stellarnav.mobile.right > ul { right: 0; }
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu { display: inline-block; text-align: right; }
.stellarnav.mobile.left > ul { left: 0; }
.stellarnav.mobile.right .location-btn-mobile.half, .stellarnav.mobile.right .call-btn-mobile.half, .stellarnav.mobile.right .close-menu.half { text-align: center; }
.stellarnav.mobile.right .location-btn-mobile.third, .stellarnav.mobile.right .call-btn-mobile.third, .stellarnav.mobile.right .close-menu.third { text-align: center; }
.stellarnav.mobile.left .location-btn-mobile.half, .stellarnav.mobile.left .call-btn-mobile.half, .stellarnav.mobile.left .close-menu.half { text-align: center; }
.stellarnav.mobile.left .location-btn-mobile.third, .stellarnav.mobile.left .call-btn-mobile.third, .stellarnav.mobile.left .close-menu.third { text-align: center; }
.stellarnav.mobile.left .menu-toggle.half, .stellarnav.mobile.left .menu-toggle.third, .stellarnav.mobile.right .menu-toggle.half, .stellarnav.mobile.right .menu-toggle.third { text-align: left; }
.stellarnav.mobile.left .close-menu.third span, .stellarnav.mobile.right .close-menu.third span { display: none; }
/* left and right positions */

/* mega dd */
.stellarnav.desktop li.mega ul ul { background: none; }
.stellarnav.desktop li.mega li { display: inline-block; vertical-align: top; margin-left: -4px; }
.stellarnav.desktop li.mega li li { display: block; position: relative; left: 4px; }
.stellarnav.desktop li.mega ul ul { width: auto; }
.stellarnav.desktop > ul > li.mega { position: inherit; }
.stellarnav.desktop > ul > li.mega > ul { width: 100%; }
.stellarnav.desktop > ul > li.mega > ul li.has-sub ul { display: block; position: relative; left: auto; }
.stellarnav.desktop > ul > li.mega > ul > li { padding-bottom: 15px; box-sizing: border-box; }
.stellarnav.desktop li.mega li li a { padding: 5px 15px; }
.stellarnav.desktop li.mega li.has-sub a:after { display: none; }
.stellarnav.desktop > ul > li.mega > ul > li > a { color: yellow; }
/* mega dd */


/* Fallback for slow javascript load */
@media only screen and (max-width : 768px) {
  .stellarnav { overflow: hidden; display: block; }
  .stellarnav ul { position: relative; display: none; }
}

/* mobile nav */
@media only screen and (max-width : 420px) {
  .stellarnav.mobile .call-btn-mobile.third span, .stellarnav.mobile .location-btn-mobile.third span { display: none; }
}
@media (max-width: 1199.98px){
  .stellarnav{font-size: 22.5px;}
}
@media (max-width: 1024px){
  .stellarnav { display: block; }
  .stellarnav ul { position: relative; right:10px;}
  .stellarnav{font-size: 15px;}
  .stellarnav ul li { position: relative; right:10px;}

}
/*nav style end*/
/*main stylesheet start*/
/*font face starts*/

/* BEGIN Light */
@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/open-sans/Light/OpenSans-Light.eot?v=1.1.0");
  src: url("../fonts/open-sans/Light/OpenSans-Light.eot?#iefix&v=1.1.0") format("embedded-opentype"), url("../fonts/open-sans/Light/OpenSans-Light.woff2?v=1.1.0") format("woff2"), url("../fonts/open-sans/Light/OpenSans-Light.woff?v=1.1.0") format("woff"), url("../fonts/open-sans/Light/OpenSans-Light.ttf?v=1.1.0") format("truetype"), url("../fonts/open-sans/Light/OpenSans-Light.svg?v=1.1.0#Light") format("svg");
  font-weight: 300;
  font-style: normal; }
/* END Light */

/* BEGIN Regular */
@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/open-sans/Regular/OpenSans-Regular.eot?v=1.1.0");
  src: url("../fonts/open-sans/Regular/OpenSans-Regular.eot?#iefix&v=1.1.0") format("embedded-opentype"), url("../fonts/open-sans/Regular/OpenSans-Regular.woff2?v=1.1.0") format("woff2"), url("../fonts/open-sans/Regular/OpenSans-Regular.woff?v=1.1.0") format("woff"), url("../fonts/open-sans/Regular/OpenSans-Regular.ttf?v=1.1.0") format("truetype"), url("../fonts/open-sans/Regular/OpenSans-Regular.svg?v=1.1.0#Regular") format("svg");
  font-weight: normal;
  font-style: normal; }
/* END Regular */

/* BEGIN Semibold */
@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/open-sans/Semibold/OpenSans-Semibold.eot?v=1.1.0");
  src: url("../fonts/open-sans/Semibold/OpenSans-Semibold.eot?#iefix&v=1.1.0") format("embedded-opentype"), url("../fonts/open-sans/Semibold/OpenSans-Semibold.woff2?v=1.1.0") format("woff2"), url("../fonts/open-sans/Semibold/OpenSans-Semibold.woff?v=1.1.0") format("woff"), url("../fonts/open-sans/Semibold/OpenSans-Semibold.ttf?v=1.1.0") format("truetype"), url("../fonts/open-sans/Semibold/OpenSans-Semibold.svg?v=1.1.0#Semibold") format("svg");
  font-weight: 600;
  font-style: normal; }
/* END Semibold */

/* BEGIN Bold */
@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/open-sans/Bold/OpenSans-Bold.eot?v=1.1.0");
  src: url("../fonts/open-sans/Bold/OpenSans-Bold.eot?#iefix&v=1.1.0") format("embedded-opentype"), url("../fonts/open-sans/Bold/OpenSans-Bold.woff2?v=1.1.0") format("woff2"), url("./fonts/Bold/OpenSans-Bold.woff?v=1.1.0") format("woff"), url("../fonts/open-sans/Bold/OpenSans-Bold.ttf?v=1.1.0") format("truetype"), url("../fonts/open-sans/Bold/OpenSans-Bold.svg?v=1.1.0#Bold") format("svg");
  font-weight: bold;
  font-style: normal; }
/* END Bold */


/*comfortaa start*/

@font-face {
    font-family: 'Comfortaa';
    src: url('../fonts/comfortaa/Comfortaa-Bold.eot');
    src: url('../fonts/comfortaa/Comfortaa-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/comfortaa/Comfortaa-Bold.woff2') format('woff2'),
        url('../fonts/comfortaa/Comfortaa-Bold.woff') format('woff'),
        url('../fonts/comfortaa/Comfortaa-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Comfortaa';
    src: url('../fonts/comfortaa/Comfortaa-Light.eot');
    src: url('../fonts/comfortaa/Comfortaa-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/comfortaa/Comfortaa-Light.woff2') format('woff2'),
        url('../fonts/comfortaa/Comfortaa-Light.woff') format('woff'),
        url('../fonts/comfortaa/Comfortaa-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Comfortaa';
    src: url('../fonts/comfortaa/Comfortaa-Regular.eot');
    src: url('../fonts/comfortaa/Comfortaa-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/comfortaa/Comfortaa-Regular.woff2') format('woff2'),
        url('../fonts/comfortaa/Comfortaa-Regular.woff') format('woff'),
        url('../fonts/comfortaa/Comfortaa-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*comfortaa end*/

/*font face end*/


/*common start*/

img{max-width:100%;}

a{transition: all 0.2s ease;text-decoration:none;}
a:hover{text-decoration:none;}

a:hover, a:focus{outline: none; text-decoration: none;}

h2{margin-top:0;}

/*p{text-align:justify;}*/

body{font-family: 'Book Antiqua'; font-weight: normal; font-size:18px; line-height:25px; color:#4c4c4c; overflow-x:hidden; background: #e8f4f7; -webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out; transition: all .3s ease-out; }

/*common end*/

/*header start*/
.modal{
  z-index: 9905!important;
}
.modal-body{
  text-align: justify!important;
}
.modal-title{
  color:skyblue!important;
  font-weight: bolder!important;
  font-size: 30px!important;
}

/*about telecom start*/
section.about_telecom {
    padding: 30px 10px;
}
.about_telecom_part {
    padding: 0 0px;
    height: 460px;
    background: #f0f2e5;
    width: 270px;
}
.about_telecom_part_first{
    padding:20px 25px;
    background: #f0f2e5;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    width: 310px;
    height:460px;
    position: relative;
    right: 40px;
}

.about_telecom_part_first_img{
  width: 350px!important;
  height: 150px;
  border: 1px solid #aacbee;
}
.about_telecom_part_first p{
  text-align: center;
  font-weight: 900;
  font-size: 25px;
  line-height: 10.5mm;
  position: relative;
  top: 35px;

}
.Coffe_bookj_cover_img{
height: 250px; width: 260px; position: absolute; bottom: 15px;
}
.paging-nav {
        text-align: right;
        padding-top: 5px;
        float: right;
      }

      .paging-nav a {
        margin: auto 1px;
        text-decoration: none;
        display: inline-flex;
        padding: 1px 7px;
        background: #fdfbfb;
        color: #426be8;
        border-radius: 3px;
        border: 1px solid #489ce6;
      }
      .paging-nav a:hover {
        background: #29eaea;

      }
      .paging-nav .selected-page {
        background: blue;
        font-weight: 900;
        color: white;
      }

      .paging-nav,
      #tableData {
        width: 400px;
        margin: 0 auto;
        
      }
.marquee{
  white-space: normal;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  height: 310px;
}
#news:hover{
  animation-play-state: paused;
}
.marquee ul {
  -moz-animation: marquee 400s linear infinite;
  -webkit-animation: marquee 400s linear infinite;
  animation: marquee 400s linear infinite;
}
 @-moz-keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, -100%);
  }
}
@-webkit-keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, -100%);
  }
}
@keyframes marquee {
  0% {
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -moz-transform: translate(0, -100%);
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
  }
}
/*.about_telecom_part.first:after{display:none;}
.about_telecom_part:after{content:""; position:absolute; top:0; left:0; height:320px; width:4px; background:#dedede;}
.about_telecom_part:before{content:""; position:absolute; top:0; left:0; height:320px; width:4px; background:#dedede;}*/
.about_telecom_part h2 {
    color: #0878a8;
    font-size: 20px;
    font-weight: 900;
}
.about_telecom_part p {
    font-size: 15px;
    text-align: justify;
}
.about_telecom_part ul {
    margin: 0;
    padding: 0;
}
.about_telecom_part ul li {list-style: none; border-bottom: 1px solid #aeb8c8; padding: 4px 0; text-align: justify;}
.about_telecom_part ul li:last-child{border-bottom:0;}
.about_telecom_part ul li a{color:#4c4c4c; font-size:15px;}
.about_telecom_part_main {height: 460px;}
.about_telecom_part_main em.fa.fa-file-pdf-o {color: red; margin-left: 6px;}
.about_telecom_part_last{
    padding: 0 0px;
    height: 460px;
    background: #fcfdf8;
    /*width: 350px!important;*/
}
.about_telecom_part_last h2 {
    color: #0878a8;
    font-size: 20px;
    font-weight: 900;
}
.about_telecom_part_last p {
    font-size: 15px;
    text-align: justify;
}
.about_telecom_part_last ul {
    margin: 0;
    padding: 0;
  }

  .read_more{
    position: relative;
    top: 34px;
    float: right;
    left: 20px;
    
  }
  
.about_telecom_part_last ul li {list-style: none; border-bottom: 1px solid #a1ccdf; padding: 4px 0; text-align: justify;}
.about_telecom_part_last ul li:last-child{border-bottom:0;}
.about_telecom_part_last ul li a{color:#4c4c4c; font-size:15px;}
/*about telecom end*/

/*about telecom second start*/
.about_telecom_second{
  margin: 20px 0;
}
.about_telecom_second_part{
  height: 530px;
  background: #f0f2e5;
  width: 350px;
}
.about_telecom_second_part h2 {
    color: #0878a8;
    font-size: 25px;
    font-weight: 900;
}
.about_telecom_second_part p {
    font-size: 15px;
    
}
.about_telecom_second_part ul {
    margin: 0;
    padding: 0;
}
.about_telecom_second_part ul li {list-style: none; border-bottom: 1px solid #aeb8c8; padding: 4px 0; text-align: justify;}
.about_telecom_second_part ul li:last-child{border-bottom:0;}
.about_telecom_second_part ul li a{color:#4c4c4c; font-size:15px;}
.about_telecom_second_part_main {height: 530px;}
.about_telecom_second_part_main em.fa.fa-file-pdf-o {color: red; margin-left: 6px;}
.line_style{ line-height: 4.5mm; }
.card-footer-height{ height: 50px; }
.list-line-style{ line-height: 5.7mm; }
.contact-us-style iframe{
  border:1px solid #127cd9; height: 245px;
}
.map_style{
  border: 1px solid aliceblue;
}
.connect_more{
  float: right;
  position: relative;
  bottom: 6px;
}
.about_telecom_second_part_main_link_list {
  background: #0cb9eed9;
  height: 530px;
  width: 350px;
}
.about_telecom_second_part_main_link_list h2{
  color: #fff;
  font-size: 25px;
  font-weight: 900;
}
.about_telecom_second_part_main_link_list ul {
    margin: 0;
    padding: 0;
}
.about_telecom_second_part_main_link_list ul li {list-style: none; border-bottom: 1px solid #f1f1f1; padding: 4px 0; text-align: justify;}
.about_telecom_second_part_main_link_list ul li:last-child{border-bottom:0;}
.about_telecom_second_part_main_link_list ul li a{color:#1E3D8C; font-size:17px;}

.RoF {float: left; width: 120px; height: 128px; position: relative; background: #fff;  border: 1px solid #1a8fc4; padding:4px;}
.RoF img{width: 75px; position: relative; bottom: 5px; left:18px;}
.RoF p{text-align: center; font-size: 12px; font-weight: 900; line-height: 5.5mm; position: relative; top: 10px; text-transform: uppercase;}

.DMM {float: right; width:120px; height: 128px; position: relative; right:  35px;  background: #fff;  border: 1px solid #1a8fc4; padding:4px;}
.DMM img{width: 75px; position: relative; bottom: 5px; left: 18px;}
.DMM p{text-align: center; font-size: 14px; font-weight: 900; line-height: 6.5mm; position: relative; top: 18px; text-transform: uppercase;}

.wbidc img{float: left; width:120px; position: relative; top:15px; }
.wbiidc img{float: right; width: 120px; position: relative; right:  35px; top:15px;}

.wbmdtcl img{float: left; width:120px; position: relative; top: 35px;}
.wbppdcl img{float: right; width: 120px; position: relative; right:  35px; top: 35px;}

.gcgscl img{float: left; width: 120px; position: relative; top: 60px;}
.UMS {float: right; width:110px; height: 110px; position: relative; right:  40px; top:45px; background: #fff;  border: 1px solid #1a8fc4; padding:4px;}
.UMS img{width: 65px; position: relative; bottom: 5px; left: 18px;}
.UMS p{text-align: center; font-size: 12px; font-weight: 900; line-height: 3.5mm; position: relative; bottom: 10px;}





/*about telecom second end*/

/*list telecom start*/
.list_telecom {margin: 0px 0px;}
.list_telecom .left{ background:#0ec7c1;  width:25%; padding:25px 18px; height: 375px; position: relative; right:10px;}
.list_telecom .middle{ background:#1a8fc4;  width:25%; padding:25px 18px; height: 375px; position: relative; left:10px;}
.list_telecom .right{float:left; width:33%; padding:25px 18px; height: 375px;}

.list_telecom h2 {color: #fff; font-size: 26px;}
.list_telecom .left p {
    color: #fff;
    text-align: inherit;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 15px;
}
.list_telecom .left a{
  color: #fff!important;
}

.list_telecom .left .date{color:#000; font-size:13px;}
.list_telecom .left button{margin-top:20px;}
.list_telecom .middle ul{margin:0; padding:0;}
.list_telecom .middle ul li{list-style:none; font-size:16px; border-bottom: 1px solid #a1ccdf; padding: 4px 0;}
.list_telecom .middle ul li a{font-size:16px; color:#fff;}
.list_telecom .right .right_one{width:50%; display:inline-block; vertical-align:top;}
.list_telecom .right .right_two{width:49%; display:inline-block; vertical-align:top;}
.list_telecom .right .right_one ul{margin:0; padding:0;}
.list_telecom .right .right_one ul li{list-style:none; margin-bottom:4px;}
.list_telecom .right .right_one ul li a{font-size:16px; color:#000;}
.list_telecom .right .right_two ul{margin:0; padding:0;}
.list_telecom .right .right_two ul li{list-style:none; margin-bottom:15px;}
.list_telecom .right .right_two ul li a{font-size:16px; color:#000;}
.list_telecom .right .right_two ul li a img{display:inline-block; margin-right:8px;}
.right_one em.fa.fa-angle-double-right {
    margin-right: 15px;
}
.view_more{
    position: relative;
    top: 19px;
    float: right;
    left: 17px;
    
  }
/*list telecom end*/

/*footer start*/

.footer_top{background:#666; padding: 1px 0 1px 0; margin:0px;}
.footer_top p{color: #fff; margin-top: 2px; margin-bottom: 2px;}
.footer_top div{background-color: #666;}
/*.footer_top ul{width:70%; margin:0 auto;}
.footer_top ul li{list-style:none; display:inline-block; margin:0 15px;}
.footer_top ul li a{color:#fff; font-size:13px;}*/
.footer_bottom{padding:20px 0 10px 0; background:#282828;}
.footer_bottom .copyright {color: #d2cfcf; line-height:18px; font-size: 14px; position: relative; right: 25px; top:10px;}
.ind_gov img{position: relative; top:30px; left:50px;}

.UMS_img img{float: left; width:90px; position: relative; right:70px;}
.UMS_link{float: right; position: relative; font-size: 15px; left:5px; bottom: 85px;}
  .social_link li{
    float: right;
    list-style: none;
    color: #fff;
}
.footer_bottom .info1 {color: #d2cfcf; line-height:18px; font-size: 14px; position: relative; left:30px; top:10px; padding: 0px 10px; }
.footer_bottom .info2 {color: #d2cfcf; line-height:18px; font-size: 14px; position: relative; left:35px; top:10px; padding: 0px 10px; }
/*.nic_logo{float: right; position: absolute; top:70px; left: 270px; color: #fff;}*/
/*footer end*/
@media only screen and (max-width: 991px) {
  body{font-family: 'Book Antiqua'; font-weight: normal; font-size:18px; line-height:25px; color:#4c4c4c; overflow-x:hidden; background: #fff; -webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out; transition: all .3s ease-out; }

.list_telecom .left{ background:#0ec7c1; float:left; width:100%; padding:25px 18px; height: 370px;}
.list_telecom .middle{ background:#1a8fc4; float:left; width:100%; padding:25px 18px; height: 370px;}
.list_telecom .right{ background:#ffaf32; float:left; width:100%; padding:25px 18px; height: 370px;}
.about_telecom_part:after{display:none;}
.UMS_img img{float: left; width:90px; position: relative; top:15px; left: 0px;}
.UMS_link{position: relative; font-size: 16px; left:10px; top: 15px;}
.ind_gov img{position: relative; top:10px;}
.mdtcl_img {position: relative; top:5px;}
.footer_bottom img {margin: 0 auto; text-align:center; position: relative; left:35px;}
.footer_bottom .info1{position: relative; top:25px; left:8px;}
.footer_bottom .info2{position: relative; top:25px; left:8px;}
}
@media only screen and (max-width: 767px) {
  body{font-family: 'Book Antiqua'; font-weight: normal; font-size:18px; line-height:25px; color:#4c4c4c; overflow-x:hidden; background: #fff; -webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out; transition: all .3s ease-out; }

.list_telecom .left{ background:#0ec7c1; float:left; width:100%; padding:25px 18px; height: 370px;}
.list_telecom .middle{ background:#1a8fc4; float:left; width:100%; padding:25px 18px; height: 370px;}
.list_telecom .right{ background:#ffaf32; float:left; width:100%; padding:25px 18px; height: 370px;}
.about_telecom_part:after{display:none;}
.UMS_img img{float: left; width:90px; position: relative; top:15px; left: 0px;}
.UMS_link{position: relative; font-size: 16px; left:10px; top: 15px;}
.ind_gov img{position: relative; top:10px;}
.mdtcl_img {position: relative; top:5px;}
.footer_bottom img {margin: 0 auto; text-align:center; position: relative; left:35px;}
.footer_bottom .info1{position: relative; top:25px; left:8px;}
.footer_bottom .info2{position: relative; top:25px; left:8px;}
}
@media only screen and (max-width: 480px) {
  body{font-family: 'Book Antiqua'; font-weight: normal; font-size:18px; line-height:25px; color:#4c4c4c; overflow-x:hidden; background: #fff; -webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out; transition: all .3s ease-out; }

.list_telecom .left{ background:#0ec7c1; float:left; width:100%; padding:25px 18px; height: 370px;}
.list_telecom .middle{ background:#1a8fc4; float:left; width:100%; padding:25px 18px; height: 370px;}
.list_telecom .right{ background:#ffaf32; float:left; width:100%; padding:25px 18px; height: 370px;}
.about_telecom_part:after{display:none;}
.UMS_img img{float: left; width:90px; position: relative; top:15px; left:0px;}
.UMS_link{position: relative; font-size: 16px; left:10px; top: 15px;}
.ind_gov img{position: relative; top:10px;}
.mdtcl_img {position: relative; top:5px;}
.footer_bottom .info1{position: relative; top:25px; left:8px;}
.footer_bottom .info2{position: relative; top:25px; left:8px;}
}
@media only screen and (max-width: 767px) {
.header_top_left{text-align:center;}
.header_top_left{text-align:center;}
.header_bottom_right {float: none; margin: 14px 0px; text-align: center;}
.footer_bottom img {margin: 0 auto; text-align:center; position: relative; left:35px;}
.ind_gov img {float: none; margin-top:12px;}
.header_top_right {float: none; margin-top: 8px; text-align: center;}
.header_bottom img {margin: 0 auto;}
.banner_caption {font-size: 20px;}
.carousel-control .glyphicon-chevron-right, .carousel-control .icon-next{display:none;}
.carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev{display:none;}
.banner_caption{display:none;}
}
@media only screen and (max-width: 480px) {
.banner_minister_part {
    position: inherit;
    margin-top: 20px;
    width: 80% !important;
    margin: 20px auto;
    left: 0;
  height:215px;
  padding:35px 10px 0 10px;
}
.banner_minister_part_bottom {

    position: inherit;
    left: 0;
    width: 80% !important;
    margin-top: -20px;
    margin: -20px auto;

}
h2.minister_name {font-size: 20px;}
h2.minister_deg {font-size: 15px;}
.banner_minister_part_bottom img {width: 14%;}
.carousel-inner > .item > img {height: 170px !important;}
.about_telecom_part h2 {font-size: 20px;}
.about_telecom_part p {font-size: 14px;}
.btn-warning {font-size: 12px;}
.list_telecom h2 {font-size: 20px;}
.list_telecom .right{height:600px;}
.list_telecom .right .right_one{width:100% !important; display:block !important;}
.list_telecom .right .right_two{width:100% !important; display:block !important; margin-top:25px;}

}
/*main stylesheet end*/
/*style extra start*/
.container_width{
  max-width: 1400px;
}
.biswabanglalogo {
  height: 100px;
  vertical-align:middle;
  margin-bottom: 10px;
  position: relative;
  top:5px;
  left: 44px;
  padding: 5px;
}

.dept_name {
  font-size:25px;
  font-weight: bolder;
  vertical-align: middle;
  text-transform: uppercase;
  position: relative;
  left: -22px;
  top:35px;
}
.dept_name span{
  font-size: 18px;
}
.header_top_right_resize {
  display: inline-block;
/*margin-left: -47px;
margin-top: 68px;*/
position: relative;
top:50px;
/*left: -10px;*/

}
.header_top_right_resize ul {
    margin: 0;
    padding: 0;

}
.header_top_right_resize ul li {
    list-style: none;
    display: inline-block;
    padding: 0 5px;
    background-color: #0081ff;
}
.header_top_right_resize ul li a{color:#fff!important;}
.header_screen_reader a {
    font-size: 14px;
    margin-top: 0px;
    vertical-align: top;

}
.header_screen_reader em.material-icons {
    font-size: 19px;
    vertical-align: middle;
}
li.blacklink {
    background: #000!important;
    /* padding: 0 9px; */
    width: 28px;
    text-align: center;
     border:1px solid #fff;
}
li.whitelink {
    background: #fff!important;
    /* padding: 0 9px; */
    width: 28px;
    text-align: center;
    color: #000!important;
    border:1px solid black;
}

.header_top_right_resize ul li.whitelink a{color:#000!important;}
.header_top_right_resize ul li.bg_blue_screen a{color:#fff;}

.clearfix {
  *zoom: 1; }
  .clearfix:before, .step-list > li.clearfix:after, .clearfix:after {
    content: " ";
    display: table; }
  .clearfix:after {
    clear: both; }

.jessor {
  position:relative;margin:0 auto;top:0px;left:0px;width:1400px;height:250px;overflow:hidden;visibility:hidden;
}

.jessor_loading {
  position:absolute;top:0px;left:0px;width:100%;height:100%;text-align:center;background-color:rgba(0,0,0,0.7);
}

.jessor_spin{
  margin-top:-19px;position:relative;top:50%;width:38px;height:38px;
}

.jessor_slide {
  cursor:default;position:relative;top:0px;left:0px;width:1400px;height:250px;overflow:hidden;
}

.jessor_banner_text_1{
  position:absolute;top:30px;left:30px;width:480px;height:130px;font-family:'Comfortaa',sans-serif;font-size:22px;color:#000000;line-height:1.5;padding:5px 5px 5px 5px;box-sizing:border-box;background-color:rgba(255,188,5,0.8);background-clip:padding-box;
}

.jessor_banner_text_2 {
  position:absolute;top:300px;left:30px;width:480px;height:130px;font-family:'Comfortaa',sans-serif;font-size:26px;color:#000000;line-height:1.27;padding:5px 5px 5px 5px;box-sizing:border-box;background-color:rgba(255,188,5,0.8);background-clip:padding-box;
}

.jessor_navigation {
  position:absolute;bottom:12px;right:12px;"
}

.jessor_navigation_data {
  width:16px;height:16px;
}

.jessor_view_box{
  position:absolute;top:0;left:0;width:100%;height:100%;
}

.jessor_left_arrow {
  width:65px;height:65px;top:0px;left:25px;
}

.jessor_left_arrow_view_box {
position:absolute;top:0;left:0;width:100%;height:100%;
}

.jessor_right_arrow {
  width:65px;height:65px;top:0px;right:25px;
}

.jessor_right_arrow_view_box {
  position:absolute;top:0;left:0;width:100%;height:100%;
}

        /*jssor slider loading skin spin css*/
        .jssorl-009-spin img {
            animation-name: jssorl-009-spin;
            animation-duration: 1.6s;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
        }

        @keyframes jssorl-009-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /*jssor slider bullet skin 032 css*/
        .jssorb032 {position:absolute;}
        .jssorb032 .i {position:absolute;cursor:pointer;}
        .jssorb032 .i .b {fill:#fff;fill-opacity:0.7;stroke:#000;stroke-width:1200;stroke-miterlimit:10;stroke-opacity:0.25;}
        .jssorb032 .i:hover .b {fill:#000;fill-opacity:.6;stroke:#fff;stroke-opacity:.35;}
        .jssorb032 .iav .b {fill:#000;fill-opacity:1;stroke:#fff;stroke-opacity:.35;}
        .jssorb032 .i.idn {opacity:.3;}

        /*jssor slider bullet skin 051 css*/
        .jssorb051 .i {position:absolute;cursor:pointer;}
        .jssorb051 .i .b {fill:#fff;fill-opacity:0.5;}
        .jssorb051 .i:hover .b {fill-opacity:.7;}
        .jssorb051 .iav .b {fill-opacity: 1;}
        .jssorb051 .i.idn {opacity:.3;}


        /*jssor slider arrow skin 051 css*/
        .jssora051 {display:block;position:absolute;cursor:pointer;}
        .jssora051 .a {fill:none;stroke:#fff;stroke-width:360;stroke-miterlimit:10;}
        .jssora051:hover {opacity:.8;}
        .jssora051.jssora051dn {opacity:.5;}
        .jssora051.jssora051ds {opacity:.3;pointer-events:none;}
.overlay_index_banner{
  position: relative; 
  top:195px;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1;
  height: 165px; 
  width: 100%;
  transition: .5s ease;
  opacity:1!important;
  color: white;
  font-family: Bell MT;
  font-size: 20px;
  padding: 10px;
  text-align: center;

}
/*.lower_left_icon{
  height: 90px;
  width: 90px;
  float:left;
  vertical-align:middle;
}*/


.inner_banner_title_function{
 color: rgb(67, 98, 104);
}

.page_gallery_background{
background-color: #dee9ed   !important;
}

.keypersons_background{
background-color: aliceblue !important;
}
.keypersons_main_div{
  position: relative; display: block; width: 100%; font-size: 26px; line-height: 36px; font-weight: 600;
}
.minister_div{
  position: relative; padding: 15px; width: 100%; color: #000;
}
.minister_table_div{
  width:40%; margin-left: 350px;
}
.minister_card_div{
  border: 2px solid #a2c5cb;
  background-color: #fff; /*width: 250px;*/
}
.mic_div{
  position: relative; top:5px; left: 20px;
}
.mic_text{
  font-size: 21px; font-weight: 600;
}
.mic_div a{
  color: #000;
}
.sec_main_div{
  width: 98%; margin-left: 16px;
}
.span_text{
  font-size: 14px;
}
.key_table_width td{
  width: 15%!important;
}
.contacts_background{
background-color: lightblue !important;
}

.brief_description{
  font-size:17px;
  line-height: 18px;
  word-spacing: 0px;
}
.brief_description span{
  font-size: 13px;
  padding: 0px;
}

.desg_text{
  font-size: 17px!important;
}
.branch_text{
  font-size: 12px!important;
}

.gallery_article{
  margin-left:auto;
  margin-right:auto;
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
  width: 80%;
}
.page_gallery_article{
  margin-left:auto;
  margin-right:auto;
margin-top: 10px;
margin-bottom: 10px;
text-align: center;
width: 100%;
}
.gallery_section{
float: left;
margin-right: 1px;
max-width: 200px;
text-align: center;
display: inline-block;
}
.page_gallery_section{
float: left;
margin-right: 1px;
max-width: 150px;
text-align: center;
display: inline-block;
}

.gallery_section a{
color: black;
text-decoration: none;
}
.gallery_section a:hover img {
            opacity:0.7;
        }

.gallery_section img{

    height: 200px;
  width: 200px;
}
.page_gallery_section img{

  height: 150px;
  width: 150px;
}
.gallery_padding{
  padding-bottom: 50px;
}
.page_gallery_padding{
  padding-bottom: 10px;
}
.side_menu_table>tbody>tr:nth-child(odd)
.side_menu_table>tbody>tr:nth-child(even){
  background-color: #fff!important;
}
/*.side_menu_table>tbody>tr:nth-child(odd):hover{
  background-color: #fff;
}*/
th{
  text-align: center!important;
}

.table_center {
    width:100% !important;
    margin: 0 auto !important;
}

.table-striped > tbody > tr:nth-child(odd) > td, .table-striped > tbody > tr:nth-child(odd) > th {
   background-color: #dfecff;
}
.table-striped > tbody > tr:nth-child(even) > td, .table-striped > tbody > tr:nth-child(even) > th {
   background-color: #FFF;
}
.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
  background-color: #e6e8ea;
}
.table-striped>thead>tr>th{
  border:1px solid #c5c5c5;
  color: #fff !important;
  background-color: #0571a2 !important;
  vertical-align: middle !important;
}
.table-striped>tbody>tr>th{
  border:1px solid #c5c5c5;
  color: #fff !important;
  background-color: #0571a2 !important;
}

.table-striped>tbody>tr>td a{
  color:#000;
}
.table-striped>tbody>tr>td{
  border: 1px solid #c5c5c5;
  color: #000;
}


 .td_style{
  vertical-align: middle!important;
 }
 .table-key > tbody > tr:nth-child(odd) > td, .table-key > tbody > tr:nth-child(odd) > th {
   background-color: #e6e8ea;
   border-color: skyblue;
}
.table-key > tbody > tr:nth-child(even) > td, .table-key > tbody > tr:nth-child(even) > th {
   background-color: #e6e8ea;
   border-color: skyblue;
}

.table-key-hover tbody tr:hover td, .table-key-hover tbody tr:hover th {
  background-color: #dfecff ;
  color: #000;
}
 .ipi_h5{
  font-size: 19px;
  font-weight: bold;
 }
 .ipi_table{
  margin:0px!important;
  font-size: 17px!important;
 }
 .table_div{
  padding: 5px;
  margin-top: 44px; 
  margin-left: -37px;
 }
 .branch_background{
  background: ;
 }
 .lower_left_icon{
  height: 90px;
  width: 100px;
  float:left;
  position: relative;
  right: 30px;
  top:10px;
}

 
 .branches_card_background{
  background-color:whitesmoke;
  height:400px;
  width:200px;
  margin: 0px;
  padding: 0px;
 }
.branches_card_image{
  height:150px;
  width: 200px;
  padding-left:1px  !important;
 padding-right: 0px !important;
 }
 .card-img-top{
  padding: 0px;
  color: red;
 }
 col-md-3_1{
 color: red;
 padding-left:1px  !important;
 padding-right: 0px !important;
 }

 .card_title1{
font-weight: bold;
color:#6a5acd;
 }
 card-text1{
   color: red;
   box-sizing: border-box;
  text-emphasis: none !important;
 }
 .card_style1{
  padding: 0px;
 }
 .card_style2{
  float:right;
  font-size: 15px;
 }
 
 .card-body{
  padding-bottom: 0px !important;
 }
 .card-body h5{
  font-size: 23px;
  color: #090e53;
 }
 .btn_color{
  color:#5eaae1;
  padding: 0px;
  font-weight: 900;
  font-size: 17px;
 }
 .btn_color_disabled{
  color:red;
  padding: 0px;
  font-weight: bold;
 }


.branches_card_title{
  margin-top: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3em; 
  font-weight:bold; 
  color: black;
 } 
 
 .Corporation th{
  text-align: center;
 }
  .affix {
    top: 20px;
    z-index: 9999 !important;
  }
  
.nav_custom{
  background: #f5f5dc !important;
  border-radius: 15px;
}

.nav_custom a:hover{
  background: #d2d27a !important;
}

.nav_custom a{
  border-radius: 15px !important;
}


.nav_custom .active {
   background: #d2d27a !important;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 60px;
}


.tptop
{
  background-image: url( 'Images/Top_Bg.png' );
  background-repeat: no-repeat;
  height: 40px;
  width: 925px;
}
.tpbottom
{
  background-image: url( 'Images/Bottom_Bg.png' );
  background-repeat: no-repeat;
  height: 40px;
  width: 925px;
}
.style16
{
height: 33px;
}
h2.underline{
  text-decoration-line: underline;
  color: skyblue;
  font-weight: bold;
}
h3{
  margin-bottom: 0px !important;
}
h3.underline{
  color: #eef6f9;
  font-weight: bold;
  background-color: #498484;
  padding-top: 10px;
  padding-bottom: 15px;
}
h3.industry_heading{
  color: #eef6f9;
  font-weight: bold;
  background-color: #498484;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 5px!important;
}
h3.underline1{
  background: #807d46;
  padding-top: 10px;
  padding-bottom: 15px;
  color: #eef6f9;
  font-weight: bold;
}
h3.underline2{
  background: #468065;
  padding-top: 10px;
  padding-bottom: 15px;
  color: #eef6f9;
  font-weight: bold;
}
.keyperson_heading{
  color: #eef6f9;
  font-weight: bold;
  background-color: #01a7a1;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 20px;
}
.title1{
  color: #29b8f0;
  font-size: 15px;
  font-weight: bold;
  font-style: inherit;
}
.background_color1{
  background: #ddfbf1;

}
.background_color2{
  background: antiquewhite;

}
.background_color3{
  background: #dbe8ea;

}
.description{
  padding: 13px;
}
.list-group{
  padding-left: 15px;
  text-align: justify;
}
.card_footer_index{
  float: right;
  position: relative;
  left: 20px;
  top:36px;
}
.card_footer_index a{
  font-size: 15px;
  float: right;
}
/*.card_footer_index button{
  height: 35px;
  width: 102px;
}*/
.Latestnews{
  padding: 20px;
}
.float-nav-pan_branch {

    width: 220px;
    background-color: #ff6600;
    background-color: #e4e4e4;
    border-radius: 0px 15px 15px 0 ;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.26);
    box-shadow: 6px 2px 14px rgba(0, 0, 0, 1);
    position: fixed;
    left:-199px;
    top: 34vh;
    z-index: 1085;
    padding: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
 

}
.float-nav-pan_branch ul {
    margin: 0;
    padding: 0;
    list-style: none;
    
}
.float-nav-pan_branch ul li {
    margin: 0;
    padding: 0;
    list-style: none;

}
.active {

    left: 0;

}
.float-nav-pan {

    /*width: 220px;*/
    background-color: #ff6600;
    background-color: #e4e4e4;
    border-radius: 0px 15px 15px 0 ;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.26);
    box-shadow: 6px 2px 14px rgba(0, 0, 0, 1);
    position: fixed;
    left:-44px;
    top: 34vh;
    z-index: 1085;
    padding: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
 

}
.float-nav-pan ul {
    margin: 0;
    padding: 0;
    list-style: none;
    
}
.float-nav-pan ul li {
    margin: 0;
    padding: 0;
    list-style: none;

}
.active {

    left: 0;

}
.ind_description{
  padding: 10px;
}
.ind_description h5{
  font-size: 21px;
}
.ind_heading{
  font-size: 22px!important;
}
.page_office h2{
  color: #000;
  font-weight: bold;
  background-color: #829696;
  padding-top: 10px;
  padding-bottom: 15px;
  font-size: 20px;
}

/*.page_office{
  color: #eef6f9;
  font-weight: bold;
  background-color: #829696;
  padding-top: 10px;
  padding-bottom: 15px;
  font-size: 20px;
}*/
.heading_size{
  font-size: 20px;
  font-weight: bolder;
}
.page_office_text h5{
  font-weight: bold;
}
.page_office_text p{
  text-align: justify;
}
.page_office_border{
  border-right: 2px solid gray;
  padding-right: 5px;
  
}
.page_office_border h5{
  font-weight: bold;
}
.page_office_border p{
  
  text-align:justify;
}
.description h5{
  font-weight: bolder;
  font-size: 22px;
  color: #090e53;
}
.paragraph_heading strong{
  font-size: 19px;
  color: #000;
}
.strong_heading{
  font-size: 21px!important;
  color: #090e53;

}
.description p{
  font-size: 17px;
  text-align:justify!important;
}

.description ul li{
  font-size: 17px;
  text-align: justify;
}
.description ol li{
  font-size: 17px!important;
  text-align: justify!important;
}
.description ol li p{
  font-size: 14px!important;
  text-align: justify!important;
}

.map_description p{
  font-size: 19px!important;
  text-align: justify!important; 
  padding-left: 10px;

}
.map_description h3{
  font-size: 25px;
  color: #07baf0;
  font-weight: 900;
  padding-top: 10px;
  padding-left: 10px;
}
.map_description span{
  color:#9593d2;
}
.dir_paragraph{
  padding: 5px;
}
.description blockquote{
  font-size: 20px;
}
.carousel-indicators li{
  background-color: #5fc2ce;
}
.carousel-indicators .active{
  background-color: grey!important;
}
.carousel-control-prev .carousel-control-prev-icon{
  background-color: black!important;
  position: absolute;
  left:10px;
}
.carousel-control-next .carousel-control-next-icon{
  background-color: black!important;
  position: absolute;
  right:10px;
}
.gen_heading{
  font-size: 22px;
  font-weight: bold;
  color: #000;
}
.re_heading{
  font-size: 17px;
  
  color: #000;
}

.strong_heading strong{
  color: #000;
}
.industrial_park_style{
  padding-left: 15px!important;
  padding-right: 15px!important;
}
.industrial_park_style h5{
  font-size: 19px;
  font-weight: bolder;
}

.industrial_park_style p{
  font-size: 16.5px;
  text-align: justify!important; 
}

.modal_image_right{
  padding-left: 10px;
}
.modal_image_left{
  padding-right: 18px;
}
.modal_paragraph h6{
  font-weight: bolder;
}
.modal_paragraph p{
  text-align: justify!important;
  font-size: 17px;
}
.modal_paragraph li{
  font-size: 15px;
  text-align: justify;
  padding-right: 12px!important;
}
.no_paragraph{
  text-align: center!important;
  font-weight: bolder;
  font-size: 20px!important;
}
.btn_read{
  margin-right: 290px!important;
}
.btn_read a{
  color: white!important;
}
.slider {
        width: 90%;
        margin: 0px auto;
    }

    .slick-slide {
      margin: 0px 20px;
    }

    .slick-slide img {
      height: 500px;
      width: 370px;
    }

    .slick-prev:before,
    .slick-next:before {
      color: black!important;
    }
    
    .slick-slide {
      transition: all ease-in-out .3s;
      opacity: .5;
    }
    
    .slick-active {
      opacity: .5;
    }

    .slick-current {
      opacity: 1;
    }
/*about Page start*/
.about_page {
    padding: 0 18px;
    /*border-left:5px solid lightgray;*/
}
.about_page.first:after{display:none;}
.about_page:after{content:""; position:absolute; top:0; left:0; width:4px; background:#dedede;}
.about_page:before{content:""; position:absolute;  left:0; height:100%; width:4px; background:#dedede;}
.about_page h2 {
    color: #0878a8;
    font-size: 24px;
    font-weight: 600;
    margin-top: 15px;
}
.about_page p {
    font-size: 16px;
    text-align: inherit;
}
.about_page ul {
    margin: 0;
    padding: 0;
}
.about_page ul li {list-style: none; border-bottom: 1px solid #f1f1f1; padding: 4px 0;}
.about_page ul li:last-child{border-bottom:0;}
.about_page ul li a{color:#000; font-size:16px;}
.about_page_main {height: 290px;}
.about_page_main em.fa.fa-file-pdf-o {color: red; margin-left: 6px;}

/*about page end*/
.noPadding {
padding: 0 !important;
}
.page_office_heading{
  color: #eef6f9;
  font-weight: bold;
  background-color: #1e688a;
  padding-top: 10px;
  padding-bottom: 15px;
  font-size: 20px;
}
.pressDiv{
  padding: 5px;
  margin-top: 70px;
  margin-left:-10px;
}
.stationaryDiv{
  padding: 5px;
  margin-top: 20px;
  margin-left:-20px;
}
.key_img_div img{
  float: left;
  margin-right: 0px;
}
.key_img_div p{
  font-size: 14px;
  padding: 10px;
  margin-top: 20px;
}
.key_text{
  font-size: 20px;
  text-align:left;
  position: absolute; 
  vertical-align: middle!important;
  left:267px;
  top:50px;
  color: black;
  font-weight: bolder;
}
.spring_image img{
  height: 120px;
  width: 263px;
  margin-top:-27px;
  margin-left: 15px;
  -moz-box-shadow: 5px 6px 10px #1a1919bf;
  -webkit-box-shadow: 5px 6px 10px #1a1919bf;
  box-shadow: 5px 6px 10px#1a1919bf;
}
.summer_image img{
  height: 140px;
  width: 300px;
  margin-right: 15px;
  margin-top: -16px;
  -moz-box-shadow: 5px 6px 10px #1a1919bf;
  -webkit-box-shadow: 5px 6px 10px #1a1919bf;
  box-shadow: 5px 6px 10px#1a1919bf;
}
.rainy_image img{
  height: 140px;
  width: 300px;
  margin-right: 15px;
  -moz-box-shadow: 5px 6px 10px #1a1919bf;
  -webkit-box-shadow: 5px 6px 10px #1a1919bf;
  box-shadow: 5px 6px 10px#1a1919bf;
}
.autmn_image img{
  height: 140px;
  width: 300px;
  margin-left: 15px;
  -moz-box-shadow: 5px 6px 10px #1a1919bf;
  -webkit-box-shadow: 5px 6px 10px #1a1919bf;
  box-shadow: 5px 6px 10px#1a1919bf;
}
.health_image img{
  height: 180px;
  width: 300px;
  margin-top: 50px;
  
}
.padding_style{
  padding: 20px!important;
}
.rule_style{
  padding: 20px!important;
  border-left: 4px solid lightgray;
  top:0px;
}
.text_style{
  font-size: 20px;
  color: black;
  position: absolute;
  left:256px;
  top: 50px;
  font-weight: bolder;
  float: right;
}
.text_style_acs{
  color: black;
  position: absolute;
  top:140px;
  right:170px;
}
.text_style_sec{
  color: black;
  position: absolute;
  top:140px;
  right:200px;
}
.text_style_ex{
  color: black;
  position: absolute;
  top:140px;
  right:210px;
}

.list_font h4{
  color: #1795e4;
  font-weight: bolder;
  font-size: 30px;
}
.list_font p{
  font-size: 18px;
  text-align: justify;
}
.list_font li{
  font-size: 15px;
}
.culture_desc{
  margin-top: 10px;
}
.culture_desc p{
  text-align: justify;
}
.culture_image img{
  margin-left: 70px;
  margin-top: 5px;
  padding: 5px;
  
}
.function_image{
  height: 200px;
  width: 100%;
  padding-top: 15px;
  padding-left: 10px;
  padding-right: 10px;
}
.overlay_index{
  position: relative; 
  top:210px;
  z-index:1;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1;
  height: 165px; 
  width: 100%;
  transition: .5s ease;
  opacity:1;
  color: white;
  font-family: Cambria;
  font-size: 20px;
  padding: 10px;
  text-align: center;
}
.overlay_index p{
  position: absolute;
  z-index: 2;
}
.overlay_index_p{
  position: relative!important;
  z-index: 2;
  bottom: 270px;
}
.overlay_index span{
  margin-top: 7px;
  font-size: 20px;
}
.bgbs_text{
  font-size: 12px!important;
}
.short_text{
  margin-top: 5px;
  margin-left: 10px;
  font-size: 16px!important;
}

.overlay_dgp{
  position: relative; 
  bottom: 44px;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1; 
  width: 100%;
  transition: .5s ease;
  opacity:1;
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}
.overlay_tea{
  position: relative; 
  bottom: 45px;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1; 
  width: 100%;
  transition: .5s ease;
  opacity:1;
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}
.overlay_land{
  position: relative; 
  bottom: 44px;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1; 
  width: 100%;
  transition: .5s ease;
  opacity:1;
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}
.overlay_port{
  position: relative; 
  bottom: 67px;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1; 
  width: 100%;
  transition: .5s ease;
  opacity:1;
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}



.culture_image2 img{
  width:90%;
  margin-top: 50px;
  margin-left: 20px;
  
}
.infra_image img{
  width:400px;
  margin-top: 30px;
  margin-left: 10px;
  height: auto;

}
.infra_image_second img{
  width: 400px;
  margin-top: 40px;
  margin-left: 20px;
  height: auto;

}
.education_image img{
  width:400px;
  height:159px;
  margin-left: 10px;
  margin-top: 10px;
}
.education_image_ju img{
  width:400px;
  height:170px;
  margin-left: 10px;
  margin-top: 20px;
}
.education_image_cu img{
  width:400px;
  height:280px;
  margin-left: 10px;
  margin-top: 20px;
}
h3.education_heading{
  color:#fff;
font-size: 21px;
font-weight: bold;
background-color:#01a7a1;
padding: 10px;
 margin-bottom: 10px!important; 
}
.education_heading h3{
  color:#fff;
font-size: 21px;
font-weight: bold;
background-color:#01a7a1;
padding: 10px;
margin-bottom: 10px !important;
  
}
.common_heading h3{
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  background-color: #025294;
  padding:10px;
  
}
.land_paragraph{
  font-weight: 500;
  padding-left: 5px;
  color: #000;
}
h2.common_heading{
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  background-color: #025294;
  padding:5px;
  
}
.climate_heading{
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  background-color: #3b657b;
  padding:10px;
  
}
.email_style{
font-size: 15px;
padding-right: 18px;
padding-top: 4px;
}
.email_style a{
  color: #fff;
}
.email_style a:hover{
  color: blue;
}
.education_heading p{
  font-size: 18px;
  text-align: justify;
  margin-top: 5px; 
}
.screen_paragraph{
  font-size: 17px!important;
}
.contact_heading h3{
  color: #2b2b2b;
  font-size: 17px;
  font-weight: bold;
  background-color: #b1b1b1;
  padding:10px;
  
}
.image_heading h3{
  color: #d5eaf2;
  font-size: 20px;
  font-weight: bold;
  background-color: #20435d;
  padding:10px;
  
}
.image_heading img{
  padding-left: 10px;
}
.invest_border{
  border-right: 5px solid lightgray;
}
.players_div{
  border:1px solid lightgray;

}
.players_div img{
  width:100%;
  height: 100px;
}
.zone_image div{
  padding-left: 5px;
}
.zone_image img{
  width: 100%;
  height: 200px;
}
.silpa_sathi_img{
  height:190px;
  width:380px;
  margin-left: 20px;
  -moz-box-shadow: 5px 6px 10px #1a1919bf;
  -webkit-box-shadow: 5px 6px 10px #1a1919bf;
  box-shadow: 5px 6px 10px#1a1919bf;
}
.invest_image{
  height:200px;
  width:400px;
}
.glyphicon_design{
  position: absolute!important;
  left:400px;
  font-size: 25px!important;
}
.glyphicon_width1{
  position: absolute!important;
  left:415px;
  font-size: 25px!important;
}

.dance_culture{
  float: left;
  padding-right: 15px;

}
.border_style{
  border-right: 2px solid lightgray;
  padding-left: 2px;
}
.function_list{
  font-size: 18px; 
  text-align: justify;
}
.table_width td{
  width:70% !important;
}
.bengal_image{
  width:100%;
  height: 280px;
  display: block;
  opacity: 0.7;
  padding-right: 10px;
}
.overlay {
  position: relative;
  bottom: 60px; 
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1; 
  width: 97.7%;
  transition: .5s ease;
  opacity:1;
  color: white;
  padding: 15px;
  text-align: center;
}
.ind_para{
  font-size: 18px;
  margin-left: -169px;
  margin-top: 5px;
  text-align: justify;
}
.ind_img{
  height: 305px;
  width: 904px;
  opacity: .8;
  -moz-box-shadow: 10px 10px 5px #111010;
  -webkit-box-shadow: 10px 10px 5px #111010;
  box-shadow: 10px 10px 5px #111010;
  -moz-border-radius:25px;
  -webkit-border-radius:25px;
}
.rabi_img{
  height: 275px;
  width: 904px;
  opacity: .8;
  -moz-box-shadow: 10px 10px 5px #111010;
  -webkit-box-shadow: 10px 10px 5px #111010;
  box-shadow: 10px 10px 5px #111010;
  -moz-border-radius:25px;
  -webkit-border-radius:25px;
}
.description_heritage{
  /*padding-left: 12px;*/
  padding-right: 32px;
  padding-top: 12px;
  /*padding-bottom: 5px;*/

}
.description_heritage p{
  font-size: 17px;
  text-align: justify;
}
.description_heritage ul li{
  font-size: 17px;
  text-align: justify;
}
.img_tagore{
  height: 205px;
  width: 347px;
  /*padding-left: 14px;*/
  margin-top:11px;
 margin-left: -34px;
  -moz-box-shadow: 5px 6px 10px #1a1919bf;
  -webkit-box-shadow: 5px 6px 10px #1a1919bf;
  box-shadow: 5px 6px 10px #1a1919bf;
 
}
.img_jalajog{
  height: 201px;
  width: 313px;
  /*padding-left: 14px;*/
  margin-top:11px;
 margin-left: 8px;
  -moz-box-shadow: 5px 6px 10px #1a1919bf;
  -webkit-box-shadow: 5px 6px 10px #1a1919bf;
  box-shadow: 5px 6px 10px #1a1919bf;
 
}
.song_control{
  position: relative;
  top:15px;
  left: 15px;
}
.sulekha_img{
  padding: 18px;
}
.tug_img{
  height: 180px;
  width:250px;
  padding-right: 8px;
}
.victoria_img{
  height: 200px;
  width:300px;
  padding-left: 12px;
  padding-top: 6px;
}
.ind_product{
  height: 300px;
  width:200px;
  padding-left: 12px;
  padding-top: 6px;
}
.ind_ritu{
  height: 200px;
  width:300px;
  padding-left: 12px;
  padding-top: 6px;
}
.mov_img{
  width: 200px;
  height:100px;
  border: 1px solid #afa8a8;
}
.ram_img{
  height: 300px;
  width: 250px;
  -moz-box-shadow: 10px 10px 5px #111010;
  -webkit-box-shadow: 10px 10px 5px #111010;
  box-shadow: 10px 10px 5px #111010;
  -moz-border-radius:25px;
  -webkit-border-radius:25px;
}

.overlay_ram {
  position: relative; 
  bottom: -16px;
  left: 17px;
  font-size: 20px!important; 
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.6); /* Black see-through */
  color: #f1f1f1; 
  width:56%;
  transition: .5s ease;
  opacity:1;
  color: white;
  padding: 15px;
  text-align: center!important;
}
.overlay_heritage {
  font-size: 16px;
  position: relative; 
  bottom: 70px;
  left: 0px; 
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.6); /* Black see-through */
  color: #f1f1f1; 
  width:100%;
  height: 70px;
  transition: .5s ease;
  opacity:1;
  color: white;
  padding: 15px;
  text-align: center;
}
.overlay_uroy {
  font-size: 16px;
  position: relative; 
  bottom: 70px;
  left: 0px; 
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.6); /* Black see-through */
  color: #f1f1f1; 
  width:100%;
  height: 70px;
  transition: .5s ease;
  opacity:1;
  color: white;
  padding: 15px;
  text-align: center;
}
.uroy_img{
  height: 200px;
}
.overlay_bagchi {
  position: relative; 
  bottom: -10px;
  left: 16px; 
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.6); /* Black see-through */
  color: #f1f1f1; 
  width:91%;
  transition: .5s ease;
  opacity:1;
  color: white;
  padding: 15px;
  text-align: center;
}
.hover_div:hover .ind_img{
  opacity: 1;
}
.hover_div:hover p{
  font-size: 20px;
}
.overlay h3{
  font-size: 25px;
}
.hover_div:hover .bengal_image{
  opacity: 1;
}
.nil_img{
  width:250px;
  margin-left: 15px;
  margin-top:-12px;
  -moz-box-shadow: 5px 6px 10px #1a1919bf;
  -webkit-box-shadow: 5px 6px 10px #1a1919bf;
  box-shadow: 5px 6px 10px #1a1919bf;
}
.tcil_img{
  width:250px;
  height:101px;
  margin-left: 15px;
  margin-top:-37px;
  -moz-box-shadow: 5px 6px 10px #1a1919bf;
  -webkit-box-shadow: 5px 6px 10px #1a1919bf;
  box-shadow: 5px 6px 10px #1a1919bf;
}
.aycl_img{
  width:250px;
  height:101px;
  margin-right: 15px;
  -moz-box-shadow: 5px 6px 10px #1a1919bf;
  -webkit-box-shadow: 5px 6px 10px #1a1919bf;
  box-shadow: 5px 6px 10px #1a1919bf;
}
.margin_style{
  margin-top:5px;
  margin-left: 5px;
}
.power_image{
  text-align: center;
}
.power_image img{
  height:auto;
  margin-left: 5px;
  margin-top: 58px;
}
.map_image{
  width:80%;
  height:550px;
  margin-left: 75px;
    
  }

.glyphicon_branch_size{
  font-size: 24px;
}
.port_image{
  height: 150px;
  width: 300px;
  padding-right: 24px; 
  padding-top: 5px;
}
.port_image2{
  height: 250px;
  width: 180px;
  padding-left: 15px; 
  padding-top: 5px;
}
.airport_img{
  height: auto;
  width: 275px;
  padding-left: 15px;
  padding-top: 5px;
}
.paragraph_style{
  font-size: 15px;
  text-align: justify;
  overflow: auto;
}
.bengal_div{
  padding: 15px!important;
}
.bengal_div img{
  padding-top:-25px;
  margin-left: 100px;
}
.bengal_div span{
  position: absolute;
  color: skyblue;
  font-size: 18px!important;
  left:90px;
  top:110px;
}
.image_left{
  padding-right: 15px; 
  height:165px; 
  width: 220px;
}
.image_right{
  padding-left: 15px;  
  height:165px; 
  width: 220px;
  margin-bottom: 5px;
}
.Strategic_image{
  margin-top: 18px; 
  margin-right:30px;
  width:400px;
  height: 350px;
}

hr{
  background-color: silver!important;
}
.isDisabled {
  color: red!important;
  cursor: not-allowed!important;
  text-decoration: none;
}
.isDisabled:hover{
  color: red!important;
  cursor: not-allowed!important;
}
.invest_map{
  padding-left: 65px!important; 
}
.card-header h5{
  color:#ac5d2e;
  font-size: 19px;
  font-weight: 578;
  text-align: center; 
  vertical-align: middle;
}
.igc_card_header{
  height: 85px;
}
.igc_card_padding{
  padding-bottom: 25px!important;
}
.igc_img img{
  height: 200px;
  width: 300px;
  border:1px solid black;
   /*-moz-box-shadow: 5px 7px 10px #111010;
  -webkit-box-shadow: 5px 7px 10px #111010;
  box-shadow: 5px 7px 10px #111010;
  -moz-border-radius:3px;
  -webkit-border-radius:3px;*/
}
.igc_card_footer a{
  color: white;
}
.park_img_size{
  width: 275px;
  -moz-box-shadow: 5px 6px 10px #1a1919bf;
  -webkit-box-shadow: 5px 6px 10px #1a1919bf;
  box-shadow: 5px 6px 10px#1a1919bf;
}
.park_img_left{
  margin-right: 15px; margin-top: 5px; margin-left: 15px; margin-bottom: 3px;
}
.park_img_right{
 margin-right: 19px; margin-left:19px; margin-top: 5px; margin-bottom: 3px;
}
.wb_map{
  height: 300px; margin-left: 20px;
}
.heading_h4{
  font-size: 19px; color: #9f8021;
}
.howrah_bridge{
  width: 350px; height: 175px; margin-right: 20px;
}
.state_1_div{
  height: 215px!important; margin-bottom: 10px!important; 
}
.state_1_div_1{
  width: 419px; height: 227px;
}
.charnok{
  height: 264px; width: 150px;
}
.charnok_samadhi{
  height: 250px; width:245px;
}
.state_2_div{
  padding: 0px; margin-bottom: 10px; margin-left: -15px; margin-top: 5px;
}
.state_2_div p{
  text-align: justify!important;
}
.state_3_div{
  height: 240px; margin-bottom: 10px; margin-top: 5px;
}
.old_wb_map{
  height: 245px;
  margin-left: 5px;
}
.card_height{
  height: 460px;
}
.card_height p{
  text-align: justify; font-size: 15px;
}
.siraj{
  width: 150px; height: 200px; margin-right: 20px;
}
.fort_william{
  width: 250px; height: 150px; margin-left: 25px; margin-top: 22px;
}
.tipu_sultan{
  margin-right: 20px; height: 200px; width: 150px; margin-top: 5px;
}
.ali_shah{
  margin-left: 20px; height: 200px; width: 155px;
}
.freedom_div{
  width: 110%; height: 220px; margin-top: 8px; margin-right: 10px; margin-bottom: 15px;
}
.freedom_pic{
  height: 220px;
}
.bbd{
  height: 220px; width: 358px;
}
.socio_div{
  height: 200px; margin-right: 20px;
}
.reformist{
  height: 200px;
}
.festival_div{
  height: 200px; width: 338px; margin-left: 20px; margin-right: 11px;
}
.festival_pic{
  height: 100px;
}
.culture_heading{
  font-size: 19px; color: #9f8021; margin-top: 40px;
}
.literature_img{
  margin-bottom: 10px;
}
.baul_img{
  margin-left: 20px; height: 145px; margin-top: -8px;
}
.films_img{
  margin-right: 20px; width: 200px;
}
.indication_table{
  width: 90%!important;
}
.card_height_2{
  height: 360px;
}
.card_height_2 p{
  text-align: justify!important;
}
.darjeeling_img{
  margin-right: 20px; width: 265px; height: 167px;
}
.sunderbans_img{
  margin-left: 20px; width: 240px; height: 140px;
}
.hazarduari_img{
  margin-right: 20px; width: 260px; height: 167px;
}
.digha1{
  width: 500px; height: auto; margin-left: 40px;
}
.digha2{
  width: 500px; height: auto; margin-right: 40px;
}

/*style extra end*/
@media only screen and (max-width: 991px) {
  .biswabanglalogo{position: unset;}
  .dept_name{position: none; left: 8px; top: 0px;}
  .header_top_right_resize{position: unset;}
  .about_telecom_part_first{
    position: relative;
    left:0px;
  }
  .about_telecom_part{
    width: 310px;
  }
  .overlay_index{ 
    position: absolute; 
    top:72px;
    left:15px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5); /* Black see-through */
    color: #f1f1f1; 
    width: 93%;
    height: 230px;
    transition: .5s ease;
    opacity:1;
    color: white;
    font-family: Castellar;
    font-size: 16px;
    padding: 10px;
    text-align: center;
  }
  .footer_bottom .copyright{position: relative; top:17px; left:5px;}
  .ind_gov img{position: relative; left:-10px; top:10px;}
  .key_text{left: 237px; top: 23px;}
  .table{display: block!important; overflow-x: auto; }
  .airport_img{width: 100% ; padding-top:0px; padding-left: 0px; padding-bottom: 10px;}
  .map_image{height: auto; width: 71%; margin-left: 55px;}
  .port_image{width: 100%; padding-right: 0px; padding-top: 0px; padding-bottom: 5px;}
  .invest_map{padding-left: 0px!important;}
  .overlay_heritage{width: 91.5%;}
  .overlay_uroy{width: 91.5%;}
  .img_tagore{margin-left: 0px;}
  .img_jalajog{margin-left: 0px;}
  .glyphicon_design{left: unset;}
  .glyphicon_width1{left: unset;}
  .btn_read{margin-right: 105px!important;}
  .overlay{width: 96.7%;}
  .col-md-4.hover_div{width: 100%;}
  .minister_table_div{width: 100%; margin: 0px;}
  .minister_td_div{
    width: 150px;
  }
  .mic_div{
    width: 300px;
    position: relative;
    top:5px;
    left: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .biswabanglalogo{position: unset;}
  .dept_name{position: none; left: 8px; top: 0px;}
  .header_top_right_resize{position: unset;}
  .about_telecom_part_first{
    position: relative;
    left:0px;
  }
  .about_telecom_part{
    width: 310px;
  }
  .overlay_index{
    position: absolute; 
    top:72px;
    left:15px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5); /* Black see-through */
    color: #f1f1f1; 
    width: 93%;
    height: 230px;
    transition: .5s ease;
    opacity:1;
    color: white;
    font-family: Castellar;
    font-size: 16px;
    padding: 10px;
    text-align: center;
  }
  .footer_bottom .copyright{position: relative; top:17px; left:5px;}
  .footer_bottom img {margin: 0 auto; text-align:center; position: relative; left:35px;}
  .ind_gov img{position: relative; left:-10px; top:10px;}

  .footer_bottom .info1{position: relative; top:25px; left:8px;}
  .footer_bottom .info2{position: relative; top:25px; left:8px;}
  .key_text{left: 237px; top: 23px;}
  .table{display: block!important; overflow-x: auto; }
  .airport_img{width: 100%; padding-top:0px; padding-left: 0px; padding-bottom: 10px;}
  .map_image{height: auto; width: 71%; margin-left: 55px;}
  .port_image{width: 100%; padding-right: 0px; padding-top: 0px; padding-bottom: 5px;}
  .invest_map{padding-left: 0px!important;}
  .overlay_heritage{width: 91.5%;}
  .overlay_uroy{width: 91.5%;}
  .img_tagore{margin-left: 0px;}
  .img_jalajog{margin-left: 0px;}
  .glyphicon_design{left: unset;}
  .glyphicon_width1{left: unset;}
  .btn_read{margin-right: 105px!important;}
  .overlay{width: 96.7%;}
  .col-md-4.hover_div{width: 100%;}
  .minister_table_div{width: 100%; margin: 0px;}
  .minister_td_div{
    width: 150px;
  }
  .mic_div{
    width: 300px;
    position: relative;
    top:5px;
    left: 5px;
  }
}

@media only screen and (max-width: 480px) {
  .biswabanglalogo{position: unset;}
  .dept_name{position: none; left: 8px; top: 0px;}
  .header_top_right_resize{position: unset;}
  .about_telecom_part_first{
    position: relative;
    left:0px;
  }
  .about_telecom_part{
    width: 310px;
  }
  .overlay_index{
    position: absolute; 
    top:72px;
    left:15px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5); /* Black see-through */
    color: #f1f1f1; 
    width: 93%;
    height: 230px;
    transition: .5s ease;
    opacity:1;
    color: white;
    font-family: Castellar;
    font-size: 16px;
    padding: 10px;
    text-align: center;
  }
  .footer_bottom .copyright{position: relative; top:17px; left:5px;}
  .ind_gov img{position: relative; left:-10px; top:10px;}
  .key_text{left: 237px; top: 23px;}
  .table{display: block!important; overflow-x: auto; }
  .airport_img{width: 100%; padding-top:0px; padding-left: 0px; padding-bottom: 10px;}
  .map_image{height: auto; width: 71%; margin-left: 55px;}
  .port_image{width: 100%; padding-right: 0px; padding-top: 0px; padding-bottom: 5px;}
  .invest_map{padding-left: 0px!important;}
  .overlay_heritage{width: 91.5%;}
  .overlay_uroy{width: 91.5%;}
  .img_tagore{margin-left: 0px;}
  .img_jalajog{margin-left: 0px;}
  .glyphicon_design{left: unset;}
  .glyphicon_width1{left: unset;}
  .btn_read{margin-right: 105px!important;}
  .overlay{width: 96.7%;}
  .col-md-4.hover_div{width: 100%;}
  .minister_table_div{width: 100%; margin: 0px;}
  .minister_td_div{
    width: 150px;
  }
  .mic_div{
    width: 300px;
    position: relative;
    top:5px;
    left: 5px;
  }
  .card_footer_index{
  float: right;
  position: relative;
  left: 38px;
  top:7px;
}
.card_footer_index a{
  font-size: 15px;
}
.card_footer_index button{
  height: 35px;
  width: 102px;
}

}
@media only screen and (max-width: 1024px) {
  .footer_bottom .copyright{position: relative; top:17px; left:5px;}
  .footer_bottom img {margin: 0 auto; text-align:center; position: relative; left:35px;}
  .container_width{ width: 1024px; }
  .biswabanglalogo{ position: unset; }
  .dept_name{ position: none; left: -20px; top: 15px; }
  .header_top_right_resize{ position: absolute; top:64px; left:-61px; }
  .about_telecom_part_first{
    position: relative;
    right:30px;
    width: 256px;
  }
  .about_telecom_part_first_img{
    width:256px;
  }
  .Coffe_bookj_cover_img{
    height: 210px;
    width: 210px;
    position: absolute;
    bottom: 30px;
  }
  .about_telecom_part{
    width: 256px;
  }
  .about_telecom_part_main{
    width: 256px;
  }
  .footer_bottom .info1{position: relative; top:25px; left:8px;}
  .footer_bottom .info2{position: relative; top:25px; left:8px;}
  .ind_gov img{position: relative; left:-10px; top:10px;}
}